I am using an SqlDataAdapter to save some values from a table to a database:
private BindingSource bindingSource1 = new BindingSource();
private SqlDataAdapter dataAdapter = new SqlDataAdapter();
...
dataAdapter.Update((DataTable) bindingSource1.DataSource);
but it is saving empty values as null in the database. Is there anyway to make it save them as empty strings instead?