Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Why this ADO error with javascript but not with vbscript
Message
 
 
To
13/11/2002 08:27:05
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
00722031
Message ID:
00722097
Views:
14
I tried both of those and neither would run either, although I might have needed to leave out the command object with the syntax:
rs.Open([SQL command], [Connection string], 3);
However, I did find that doing this worked:
  RS.CacheSize = 10;
  RS.CursorType=3;
  RS.Open(cmdTemp);
>The problem is in optional parameter. You can use this:
>
>rs.Open(cmdTemp,Conn,3);
>
>
>but this is repetition of defining ActiveConnection. In your case you can consider using implicit connection (if this connection isn't used by other commands):
>
>rs.Open([SQL command], [Connection string], 3);
>
Previous
Reply
Map
View

Click here to load this message in the networking platform