Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
mysql errors
#2
This is how your subs need to look like:
Code:
Dim RS As ADODB.Recordset
        Set RS = New ADODB.Recordset
        RS.Open "QUERY", Conn_Client, adOpenStatic, adLockOptimistic ' now this are a lot of params, google them and you will know what them all do.
        
        RS.MoveFirst
        Variable = RS.Fields("FKey") ' blablabla
        
        RS.Close
    Set RS = Nothing
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)