1.PHP 連線 firebird 有兩種方式:
1) 使用ibase_connect 函式,ibase_connect、ibase_pconnect是用來連線InterBase資料庫的函式,同連線mysql資料庫函式一樣,這樣的函式有一整套,要使用這些函式,需要編譯時候使用開關(UNIX)、或者在PHP.INI裡面使用extension=php_interbase.dll載入(WINDOWS),否則會出現未定義函式錯誤。
2)使用 PDO 方式連線。$dbh = new PDO("firebird:User=username;Password=password;Database=DATABASE.GDE;DataSource=localhost;Port=3050");同上,此方式需要php_pdo_firebird.dll擴充套件支援。
2. 沒接觸過firebird和ibexpert,恕難回答。。
1.PHP 連線 firebird 有兩種方式:
1) 使用ibase_connect 函式,ibase_connect、ibase_pconnect是用來連線InterBase資料庫的函式,同連線mysql資料庫函式一樣,這樣的函式有一整套,要使用這些函式,需要編譯時候使用開關(UNIX)、或者在PHP.INI裡面使用extension=php_interbase.dll載入(WINDOWS),否則會出現未定義函式錯誤。
2)使用 PDO 方式連線。$dbh = new PDO("firebird:User=username;Password=password;Database=DATABASE.GDE;DataSource=localhost;Port=3050");同上,此方式需要php_pdo_firebird.dll擴充套件支援。
2. 沒接觸過firebird和ibexpert,恕難回答。。