Hi,
I am using visual studio 2005 for a project and i am using ADODB connection to connect to the sqlite database.
I would like to know how do i read and display record from the sqlite database onto the messagebox? Below is partial code from the program:
Any help will be appreciated
I am using visual studio 2005 for a project and i am using ADODB connection to connect to the sqlite database.
I would like to know how do i read and display record from the sqlite database onto the messagebox? Below is partial code from the program:
Code:
objConn.Open()
rs = New ADODB.Recordset
rs.Open("select * from table", objConn)
Do While Not rs.EOF
rs.MoveNext()
Loop
rs.Close()
Comment