 |
VFP 愛用者社區 本討論區為 Visual Foxpro 愛用者經驗交流的地方, 請多多利用"搜尋"的功能, 先查看看有無前例可循, 如果還有不懂的再發問. 部份主題有附加檔案, 須先註冊成為社區居民才可以下載.
|
上一篇主題 :: 下一篇主題 |
發表人 |
內容 |
Ruey
註冊時間: 2003-03-12 文章: 1698 來自: tunglo
第 1 樓
|
發表於: 星期二 四月 27, 2004 2:29 am 文章主題: VFP&Firebird (1)--資料庫建立篇 |
|
|
Firebird資料庫伺服器特色:
有免費版本/簡單易用/運作穩定/維護成本低/可以簡單快速的安裝
VFP&Firebird (1)--資料庫建立篇
代碼: | VFP&Firebird (1)--動態產生資料庫
*!* By Ruey
*!*====================================建立資料庫
TEXT to lc_SQLCommand TextMerge NoShow
SET SQL DIALECT 3;
SET NAMES NONE;
CREATE DATABASE 'd:\s1.fdb'
USER 'SYSDBA' PASSWORD 'masterkey'
PAGE_SIZE 4096
DEFAULT CHARACTER SET NONE;
ENDTEXT
STRTOFILE(lc_SQLCommand,"d:\s1.sql")
strcommand=[ isql.exe -INPUT d:\s1.sql ]
RUN &strcommand
*!*====================================修改資料庫
TEXT to lc_SQLCommand TextMerge NoShow
CONNECT 'd:\s1.fdb' USER 'SYSDBA' PASSWORD 'masterkey';
ALTER DATABASE
ADD FILE 'd:\s1_1.fdb'
STARTING AT PAGE 10001 LENGTH 10000
ADD FILE 'd:\s1_2.fdb';
ENDTEXT
STRTOFILE(lc_SQLCommand,"d:\s1.sql")
strcommand=[ isql.exe -INPUT d:\s1.sql ]
RUN &strcommand
*!*====================================移除資料庫
TEXT to lc_SQLCommand TextMerge NoShow
CONNECT 'd:\s1.fdb' USER 'SYSDBA' PASSWORD 'masterkey';
DROP DATABASE;
ENDTEXT
STRTOFILE(lc_SQLCommand,"d:\s1.sql")
strcommand=[ isql.exe -INPUT d:\s1.sql ]
RUN &strcommand
VFP&Firebird (2)--建立資料庫連線
LOCAL ln_Handle,lc_ConnectString,lc_SQLCommand,ln_OK
TEXT to lc_ConnectString TextMerge NoShow
DRIVER=Firebird/InterBase(r) driver;
DBNAME=d:\s1.fdb;
UID=SYSDBA;
PWD=masterkey;
ENDTEXT
ln_Handle=SQLSTRINGCONNECT(lc_ConnectString)
IF ln_Handle<=0
? "連線錯誤"
ELSE
? "連線成功"
ENDIF
SQLDISCONNECT(ln_Handle) |
參考文章:
1.VFP書籍整理
http://vfp.sunyear.com.tw/viewtopic.php?t=451
2.SPT指令集
http://vfp.sunyear.com.tw/viewtopic.php?t=46&highlight=spt
3.童心未泯VFP&SQL
http://vfp.sunyear.com.tw/viewtopic.php?t=1039&highlight=sql+server
4.Firebird書籍
http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_download_documentation
若你對Firebird有興趣的話.到以下網站
http://wiki.sunyear.com.tw/index.php?page=FirebirdSQL _________________ #############################
快樂媽咪系列幸福宅配,喝十全雞湯~原來幸福那麼簡單!!
學會VFP使用者社區的搜尋,Code才會更有趣~
############################# |
|
回頂端 |
|
 |
|
|
您 無法 在這個版面發表文章 您 無法 在這個版面回覆文章 您 無法 在這個版面編輯文章 您 無法 在這個版面刪除文章 您 無法 在這個版面進行投票 您 無法 在這個版面附加檔案 您 無法 在這個版面下載檔案
|
|