I have a table in which some fields have default values. I have a prepared query that inserts into this table, something like this :
Insert Into tablename (field0,field1,field2,field3,field4,field5)
values (@0,@1,@2,@3,@4,@5);
Now I want to specify that for a certain field (say @0) I want to insert the DEFAULT value for that field in the DB.
How can I specify this?
Using objCommand.Parameters.Item['@0'].set_Value() ?
I use set_Value to specify the value for my other parameters, but how can I tell it to use the DEFAULT?
Please dont tell me to make a special prepared query for cases when i want to use default values, since there are more than one columns that use defaults and I really dont want to make special queries for all possible combinations

I hope you can help me with this.