Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sqloledb

Status
Not open for further replies.

KPL

MIS
Dec 17, 2001
4
US
when i connect to my sql database with vb by using micro soft activex data object 2.1 library i can view only the table but not able to modify it.when i try to add,save,update or delete it will show an error message
like "the operation requested by the aplication is not upport by the provider".why it is show this err msg,pls explain me in detail
 
You probably need to look at your parameters when you try to open the recordset.

For example

recordset.Open Source, ActiveConnection, CursorType, LockType, Options

If the LockType is ReadOnly, you can't use Delete, Add new etc.

I hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top