Subject | AW: [firebird-support] Firebird Connection String |
---|---|
Author | Olaf Kluge |
Post date | 2011-06-16T09:55:20Z |
Dear All
I am a newcomer here, how the connection string for firebird using adodb.
I've installed Firebird_ODBC_2.0.0.151 and VB 6
thanks
---
Hello,
here an example in VBA, should work in vb too:
Dim Conn As adodb.Connection
Dim strConn As String
strConn = "DRIVER=Firebird/InterBase(r) driver; UID=SYSDBA;
PWD=masterkey; DBNAME=servername:d:\path\database.fdb;"
Set Conn = New adodb.Connection
Conn.ConnectionString = strConn
Conn.Open strConn
.
Best regards
Olaf
[Non-text portions of this message have been removed]
I am a newcomer here, how the connection string for firebird using adodb.
I've installed Firebird_ODBC_2.0.0.151 and VB 6
thanks
---
Hello,
here an example in VBA, should work in vb too:
Dim Conn As adodb.Connection
Dim strConn As String
strConn = "DRIVER=Firebird/InterBase(r) driver; UID=SYSDBA;
PWD=masterkey; DBNAME=servername:d:\path\database.fdb;"
Set Conn = New adodb.Connection
Conn.ConnectionString = strConn
Conn.Open strConn
.
Best regards
Olaf
[Non-text portions of this message have been removed]