gilgalbiblewheel
Computer
- Jun 6, 2006
- 5
If I use the late binding then I don't need to use MDAC reference?
Is this the correct way of presenting it (do I have to use sub and end sub)?
Code:
[b]Set cn[/b] = CreateObject("ADODB.Connection")
Compile error:
Invalid outside procedure
Is this the correct way of presenting it (do I have to use sub and end sub)?
Code:
Dim connectionString As String
Dim query As String
Dim cn
Dim cmd
Dim rs
Set cn = CreateObject("ADODB.Connection")
Set cmd = CreateObject("ADODB.Command")
Set rs = CreateObject("ADODB.Recordset")
query = "SELECT text_data from bible"
connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Inetpub\[URL unfurl="true"]wwwroot\wheelofgod\kjv.mdb;User[/URL] Id=admin;Password=;"
cn.connectionString = connectionString
cn.Open
cmd.ActiveConnection = cn
cmd.CommandText = query
Set rs = cmd.Execute
While rs.EOF <> True
MsgBox (rs(0))
rs.MoveNext
Wend
rs.Close
cn.Close