As per this post on Devshed forums I'm pasting here some sample
code (taken from Mike Hillyer's excellent "Accessing MySQL BLOB columns using Visual Basic
6"), hope it helps.
Code uses a simpler table structure and due to the fact that I
didn't bother about reproducing the "autoincrement" field it will
get you into troubles if trying to run the sample multiple
times.
You'll notice that basically the only different thing is the
connection string!
- 'CREATE CONNECTION OBJECT AND ASSIGN CONNECTION STRING
- Dim conn As ADODB.Connection
- Set conn = New ADODB.Connection
- conn.ConnectionString = "DRIVER={Firebird/Interbase(r) Driver};DBNAME=localhost:C:\Programmi\Firebird\Firebird_2_0\examples\empbuild\test.fdb;UID=SYSDBA;PW D=masterkey"
- conn.CursorLocation = adUseClient …