Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
File in use error when DROPping table via ADO/ASP
Message
De
31/08/2000 09:21:16
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Client/serveur
Divers
Thread ID:
00411126
Message ID:
00411227
Vues:
9
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform