Reputation: 195
In .Net you can use SqlCommandBuilder to derive parameters, just wondering if there is anything similar to this in VB 6.0 using MS ADO 6.1 - Maybe i need a reference to a different library?
Spoiled, it seems very annoying to add every parameter.
Upvotes: 1
Views: 129
Reputation: 175866
<ADODB.Command>.Parameters.Refresh
will populate the collection, obviously this requires an extra round-trip so has an overhead.
Upvotes: 1