Interbase connection strings

SIBPROvider Interbase OLE DB Provider

Standard

provider=sibprovider;location=localhost:;data source=c:\databases\gdbs\mygdb.gdb;user id=SYSDBA;Password=masterkey;

Version 2.x

Provider=SIBPROvider.2;Data Source=localhost:c:\databases\gdbs\mygdb.gdb;Persist Security Info=False;

Specifying character set

provider=sibprovider;location=localhost:;data source=c:\databases\gdbs\mygdb.gdb;user id=SYSDBA;Password=masterkey;character set=ISO8859_1;

Specifying role

provider=sibprovider;location=localhost:;data source=c:\databases\gdbs\mygdb.gdb;user id=SYSDBA;Password=masterkey;role=DIGITADORES;

Intersolv InterBase ODBC Driver

Local computer

Driver={INTERSOLV InterBase ODBC Driver (*.gdb)};Server=localhost;Database=localhost:C:\mydatabase.gdb;Uid=myUsername;Pwd=myPassword;

Remote Computer

Driver={INTERSOLV InterBase ODBC Driver (*.gdb)};Server=myServerAddress;Database=ComputerName:C:\mydatabase.gdb;Uid=myUsername;Pwd=myPassword;

IBPhoenix Open Source ODBC Driver (aka Firebird ODBC driver)

Local database Interbase

DRIVER=Firebird/InterBase(r) driver;UID=SYSDBA;PWD=masterkey;DBNAME=C:\database\myData.gdb;

(the file extension for the data file could also be .ib)

Specifying dialect Interbase

SQL dialects were introduced in InterBase 6.0, to support a number of new SQL features including delimited identifiers.

DRIVER=Firebird/InterBase(r) driver;UID=SYSDBA;PWD=masterkey;DBNAME=C:\database\myData.gdb;DIALECT=3;

DIALECT=1 - Parser processes as it did in InterBase V5.

DIALECT=2 - Transitional flagger. InterBaseV6, and Firebird flags ambiguous SQL constructs and issues an error or warning message.

DIALECT=3 - Parser processes anything delimited by single quotes as string constants and any thing delimited by double quotes as SQL delimited identifiers.

Autoquote identifiers

The driver will quote (") your table names in SQL statements automatically.

DRIVER=Firebird/InterBase(r) driver;UID=SYSDBA;PWD=masterkey;DBNAME=C:\database\myData.gdb;AUTOQUOTED=YES;

'SELECT A.Field FROM Table A' will be transformed into 'SELECT "A.Field" FROM "Table" A'

Be aware that upper case SQL keywords must be used, ie SELECT and FROM etc, not Select and From, else transformation will fail.

Read Only connection (Interbase)

This one is for Interbase file with the .gdb extension.

DRIVER=Firebird/InterBase(r) driver;UID=SYSDBA;PWD=masterkey;DBNAME=C:\database\myData.gdb;READONLY=YES;

Return with error on lock conflict (Interbase)

DRIVER=Firebird/InterBase(r) driver;UID=SYSDBA;PWD=masterkey;DBNAME=C:\database\myData.gdb;NOWAIT=YES;

Normally the transaction will wait if it encounters a lock conflict. This connection string will cause an error instead.