Gary
Gary

Reputation: 195

Is there a way to derive parameters off of a VB 6.0 ADO Command Object?

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

Answers (1)

Alex K.
Alex K.

Reputation: 175866

<ADODB.Command>.Parameters.Refresh will populate the collection, obviously this requires an extra round-trip so has an overhead.

Upvotes: 1

Related Questions