select first 10 skip 8 * from t_data //跳過前8行不要,取10行,即取第9行到18行共10行 select first 10 * from t_data //取前10行 select * from t_data rows 11 to 20 //取第11行到20行,共10行,行數(shù)從0開始 select * from t_data rows 11 //取前11行,
select first 10 skip 8 * from t_data //跳過前8行不要,取10行,即取第9行到18行共10行
select first 10 * from t_data //取前10行
select * from t_data rows 11 to 20 //取第11行到20行,共10行,行數(shù)從0開始
select * from t_data rows 11 //取前11行,和First 11是一樣
以上加order by 也表示是Order by 之后進行取行
查詢當(dāng)前時間:
select CURRENT_DATE + CURRENT_TIME FROM RDB$DATABASE
默認監(jiān)聽端口:3050
修改用戶密碼:
"C:\Program Files\Firebird\Firebird_2_5\bin\gsec.exe" -user sysdba -password masterkey -modify sysdba -pw 123 //密碼從默認修改為123
備份:
"C:\Program Files\Firebird\Firebird_2_5\bin\gbak.exe" -b db.fdb db.fbk -user sysdba -password masterkey //完整備份
"C:\Program Files\Firebird\Firebird_2_5\bin\gbak.exe" -b -m db.fdb db.fbk -user sysdba -password masterkey //只備份結(jié)構(gòu),不備份數(shù)據(jù),參數(shù):-m
當(dāng)前日期:%date:~0,4%%date:~5,2%%date:~8,2%
如果需備注文件加日期:"C:\Program Files\Firebird\Firebird_2_5\bin\gbak.exe" -b db.fdb db%date:~0,4%%date:~5,2%%date:~8,2%.fbk -user sysdba -password masterkey //完整備份
恢復(fù):
"C:\Program Files\Firebird\Firebird_2_5\bin\gbak.exe" -r db.fbk db.fdb -user sysdba -password masterkey
以上可放在bat文件中,pause表示暫停
dotnet連接字符串:
//服務(wù)器模式
string cnstring = "server=127.0.0.1;database=xxx;user id=sysdba;password=masterkey";
//嵌入式,不需輸入密碼,或隨便輸入什么密碼都可
//數(shù)據(jù)庫名可以用絕對路徑,也可用相對路徑如..\db\xx.fdb,也可在aliases.conf中指定具體位置
string cnstring = "client library=fbembed.dll;user id=SYSDBA;database=xxx;server type=Embedded";
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com