FirebirdSQL/1/4
出自VFP Wiki
(修訂版本間差異)
小 |
Goto-dream (對話 | 貢獻) |
||
第1行: | 第1行: | ||
- | 使用iSQL測試--在Linux上示範 | + | === 使用iSQL測試--在Linux上示範 === |
- | Step 1 – 存取資料庫\n$cd /opt/firebird/bin | + | |
+ | == Step 1 – 存取資料庫\n$cd /opt/firebird/bin == | ||
$isql -user sysdba -password <password*> | $isql -user sysdba -password <password*> | ||
SQL>connect /opt/firebird/examples/employee.gdb; | SQL>connect /opt/firebird/examples/employee.gdb; | ||
第9行: | 第10行: | ||
- | Step 2 - 建立資料庫路徑及權限 | + | == Step 2 - 建立資料庫路徑及權限 == |
:1) 假如firebird目錄不存在,請用root身分建立: | :1) 假如firebird目錄不存在,請用root身分建立: | ||
::$su - root | ::$su - root |
在2005年1月27日 (四) 08:04所做的修訂版本
使用iSQL測試--在Linux上示範
Step 1 – 存取資料庫\n$cd /opt/firebird/bin
$isql -user sysdba -password <password*> SQL>connect /opt/firebird/examples/employee.gdb; SQL>select * from sales; SQL>select rdb$relation_name from rdb$relations; SQL>help; SQL>quit;
Step 2 - 建立資料庫路徑及權限
- 1) 假如firebird目錄不存在,請用root身分建立:
- $su - root
- $mkdir -p /var/firebird
- $chown firebird:firebird /var/firebird
- 2) 建立firebird權限資料檔
- run the following script:
- $cd /opt/firebird/bin
- $./createDBAlias.sh test.fdb /var/firebird/test.fdb
- 3)
- $vi /opt/firebird/aliases.conf and add the line at the end of the file:
- test.fdb /var/firebird/test.fdb
- 4) 建立資料庫:
- $/opt/firebird/isql -u sysdba -p <password*>
- SQL>create database 'localhost:test.fdb';
- SQL>quit;
- 5) 在設定檔/opt/firebird/firebird.conf 有各參數DatabaseAccess,可以讓我們設定別名.
- $/opt/firebird/isql -u sysdba -p <password*>
- SQL>create database '/var/firebird/test.fdb';
- SQL>quit;
- $/opt/firebird/isql -u sysdba -p <password*>
- SQL>connect '/var/firebird/test.fdb';
- SQL>quit;
注:密碼存於密碼檔 /opt/firebird/SYSDBA.password