Hallo,
I was wondering if there is an alternative way of accessing the data in a table, va vba code.
The code I normally use is similar to this:
Is there something else then recordset to store data? Or another way to create one ?
Thanks for suggestions
I was wondering if there is an alternative way of accessing the data in a table, va vba code.
The code I normally use is similar to this:
Code:
Set m_db = CurrentDb()
Dim rs As Recordset
Dim sql As String
sql = "SELECT tblTest.when & tblTest.description FROM tblTest;"
Set rs = m_db.OpenRecordset(sql, dbOpenForwardOnly)
Is there something else then recordset to store data? Or another way to create one ?
Thanks for suggestions