SELECT in variable
logo3 / 1 Antworten / FlachansichtHallo
ich würde gerne bei der ausführung dieser SQL anweisung das resultat in einer variable setzen.
Bei SELECT COUNT wird das rsultat in einer variable gesetzt aber bei den normalen SELECT weiss ich nicht wie das geht hat irgendjemand eine ahnung
Wenn das resultat in eine variable drin ist, geht ich davon aus, dass die komplete tabelle in die variable dirin ist.
danke
logo3
---------------------------------------------------------------
Dim objDB As DAO.Database
Dim objRS As DAO.Recordset
Dim strSQL As String
strSQL = "SELECT total.vorname, total.alter FROM total WHERE (((total.vorname)= 'peter'));"
Set objDB = CurrentDb
Set objRS = objDB.OpenRecordset(strSQL, , DAO.dbSQLPassThrough)
Call objRS.Close
Set objRS = Nothing
Set objDB = Nothing
---------------------------------