Is there a way to determine a column's defaultvalue from the Sql Database using ado.net?
I tried using the SqlDataAdapter
's FillSchema
method:
using (SqlDataAdapter adapter = new SqlDataAdapter()) {
adapter.SelectCommand = myConnection.CreateCommand();
adapter.SelectCommand.CommandType = CommandType.Text;
adapter.SelectCommand.CommandText = "SELECT * FROM myTable";
DataTable table = new DataTable();
adapter.Fill(table);
adapter.FillSchema(table, SchemaType.Mapped);
}
When I inspect the DataColumns
in the DataTable
, I can determine if a column is an AutoIncrement
, and can determine if it allows nulls using the AllowDBNull
property. However, DefaultValue
(for columns that I know have a default value) is always null
.
I considered:
DataTable schemaTable = null;
using (SqlDataReader reader = adapter.SelectCommand.ExecuteReader(CommandBehavior.SchemaOnly)) {
schemaTable = reader.GetSchemaTable();
reader.Close();
}
but DefaultValue
is not included in the schema.
So...how can I get a column's DefaultValue
?
The DEFAULT constraint is used to set a default value for a column. The default value will be added to all new records, if no other value is specified.
Use this query to interrogate the INFORMATION_SCHEMA
for the info you're looking for:
SELECT
TABLE_NAME, COLUMN_NAME, COLUMN_DEFAULT
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
TABLE_NAME = 'your table name' AND
COLUMN_NAME = 'your column name'
Marc
Not really. This is because the default value can be determined at the time a record is inserted (like a GETDATE()
or NEW_ID()
). So the value cannot be determined in advance.
The COLUMN_DEFAULT
column of INFORMATION_SCHEMA.COLUMNS
gives you not the actual default value, but a string representation of the code SQL Server and the likes will execute to generate the default value. See http://msdn.microsoft.com/en-us/library/ms188348.aspx.
Having said that, simple constant values can easily be deduced from such an expression.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With