Using ADODB

Lawrence Gould

New member
Local time
Today, 15:08
Joined
Nov 15, 2005
Messages
5
I am currently producing an Epos application in Access 97, I have used a Make Table query to produce a table of 3 fields namely Ref Desc Price, the number of records is determined by the number of each item purchased.
I need to extract each record as 3 string variables in order to send them to a serial printer. I have tried pointing a string at the table using the Build function but i can only pick up the first record, how can i pick up subsequent record to EOF ?. I have also tried using ADODB to get a recordset but i get error messages when trying to open the connection i have loaded the appropriate library but when i use this code
Dim Cnn1 As ADODB.Connection
Set Cnn1 = CurrentProject.Connection
Dim myRecordSet As New ADODB.Recordset
Set myRecordSet.ActiveConnection = Cnn1

(i have ticked the Microsoft ActiveX Data objects Library 2.7)
I get error CurrentProject Variable not defined and when i set this to the specific database ie DB5 i get an error with .Connection i get Method or Data member not found ?? Does any one have any ideas ??
 
for the ADODB, try this
Code:
conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = " & CurrentDb.Name
conn.Open

this gives an adodb connection to the db that you are working in. Other db's and so on, just change the data source and/or provider as neccesarry
 

Users who are viewing this thread

Back
Top Bottom