Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
After ADO rs.AddNew, rs field won't accept data
Message
 
 
To
All
General information
Forum:
Visual Basic
Category:
Database DAO/RDO/ODBC/ADO
Title:
After ADO rs.AddNew, rs field won't accept data
Miscellaneous
Thread ID:
00707399
Message ID:
00707399
Views:
71
I'm running VB6 with mySQL and myODBC. The following is occuring. Field1 is defined as varchar(100) default NULL.

'MYSQL CONNECTION
Set cnMySQL = New Connection
cnMySQL.ConnectionString = "Driver={MySQL};Option=0;Port=3306;server=localhost;database=xxxxx;"
cnMySQL.Mode = adModeReadWrite
cnMySQL.CursorLocation = adUseClient
cnMySQL.Open


rs.AddNew
rs("Field1") = "123456789 .." '45 characters works okay

rs("Field1") = "123456789 .." '46 characters fails

'err.number = -2147217887
'err.description = "Multiple-step operation generated errors. Check each status value."
'err.source = "Microsoft Cursor Engine"
'err.helpcontext = 1000440


If I repeat the asignment of the 45 char string again, it will still work even after the 46 char string error.

How do I prevent/handle this?
Thanking you for your time in advance.
John
Next
Reply
Map
View

Click here to load this message in the networking platform