Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Recordset FIND problems
Message
De
11/10/2001 02:43:26
Alvin Lourdes
Children and Youth Services Cluster
Toronto, Ontario, Canada
 
 
À
Tous
Information générale
Forum:
Visual Basic
Catégorie:
COM, DCOM et OLE automation
Titre:
Recordset FIND problems
Divers
Thread ID:
00566810
Message ID:
00566810
Vues:
57
Hi, I am going to be searching for a record in the db.I am using the recordset.find method to search through the data.
Heres the code..

Dim cnClientdata As ADODB.Connection
Dim rsClientdata As ADODB.Recordset
Dim sFindCriteria As String

Set cnClientdata = New ADODB.Connection
Set rsClientdata = New ADODB.Recordset

sFindCriteria = "clientphone like '" & _
Phonenum & "*'"


With cnClientdata
.Provider = "SQLOLEDB"
.ConnectionString = "User ID=user;Password=user;" & _
"Data Source=user;" & _
"Initial Catalog=user"
.Open

End With

*When this line gets executed, I get an error: COMMAND TEXT NOT SET *
* What does this mean ? *

rsClientdata.Open , cnClientdata
rsClientdata.MoveFirst
rsClientdata.Find SearchCriteria, , adSearchForward

Thanks
Niv
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform