Please example DAO!!


ADO 
When you are coding with the ADO API and MyODBC you need to put attention in some 
default properties that aren't supported by the MySQL server. For example, using the 
CursorLocation Property as adUseServer will return for the RecordCount Property a 
result of -1. To have the right value, you need to set this property to adUseClient, 
like is showing in the VB code below: 
Dim myconn As New ADODB.Connection
Dim myrs As New Recordset
Dim mySQL As String
Dim myrows As Long

myconn.Open "DSN=MyODBCsample"
mySQL = "SELECT * from user"
myrs.Source = mySQL
Set myrs.ActiveConnection = myconn
myrs.CursorLocation = adUseClient
myrs.Open
myrows = myrs.RecordCount

myrs.Close
myconn.Close


Reply via email to