C++Builder2007中使用dbExpress開(kāi)發(fā)firebird數(shù)據(jù)庫(kù)

字號(hào):

1、 首先修改dbExpress的ini配置默認(rèn)是C:\Documents and Settings\All Users\Documents\RAD Studio\dbExpress
    dbxconnections.ini增加的內(nèi)容
    FBCONNECTION是firebird網(wǎng)絡(luò)版連接
    FB_ECONNECTION是firebird嵌入版連接
    [FB_ECONNECTION]
    DriverName=Firebird_E
    Database=database.fdb
    RoleName=RoleName
    User_Name=SYSDBA
    Password=masterkey
    ServerCharSet=
    SQLDialect=3
    ErrorResourceFile=
    LocaleCode=0000
    BlobSize=-1
    CommitRetain=True
    WaitOnLocks=True
    Interbase TransIsolation=ReadCommited
    Trim Char=False
    [FBCONNECTION]
    drivername=Firebird
    Database=database.fdb
    rolename=RoleName
    User_Name=SYSDBA
    Password=masterkey
    sqldialect=3
    localecode=0000
    blobsize=-1
    commitretain=True
    waitonlocks=True
    interbase transisolation=ReadCommited
    trim char=False
    dbxdrivers.ini增加的內(nèi)容