Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
File in use error when DROPping table via ADO/ASP
Message
From
31/08/2000 09:21:16
 
General information
Forum:
Visual FoxPro
Category:
Client/server
Miscellaneous
Thread ID:
00411126
Message ID:
00411227
Views:
10
If it's just a temporary table, create it with just the ADO recordset, do what you have to do with it and then just clear the object:
Set oRS = Server.CreateObject("ADODB.Recordset")
With oRS.Fields
  .Append("FileName", adChar, 15)
  .Append("Fault_id", adInteger)
  .Append("Process_id", adInteger)
  .Append("Section1", adChar, 2)
End With
oRS.Open
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform