firebird 连接嵌入式版本

function StorePage() { d=document; t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():''); void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes')); keyit.focus(); }

1. dotnet连接fb Embedded Server版本

firebird分为两种版本,一种为安装版一种为嵌入式版本(该版本只需要一个“fbembed.dll”文件支持即可,此文件一定要是嵌入式版本中的(<chsdate w:st="on" isrocdate="False" islunardate="False" day="30" month="12" year="1899"></chsdate>1.5.2版的文件大小为1489KB),不能使用安装版的fbembed.dll文件)

使用方法:

首先把 fb Embedded Server fbembed.dll 拷贝到应用程序目录下。并且要使用fb.net provider 1.6以上的版本 最后在连接字符串中把 ServerType属性设置为“<chmetcnv w:st="on" tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="1" unitname="”"></chmetcnv>1” 即可。其他的不变。

通过上述的设置就可以在应用程序中使用fb的本地版本了。

下面贴出连接字符串代码(仅供参考)

FbConnectionStringBuilder cs = new FbConnectionStringBuilder();

cs.DataSource = "localconnect";

cs.Database = @"F:\project files\testfiles\firebird\firebirddemo\bin\Debug\TASKS.GDB";

cs.ServerType = 1;//关键就是这里,一定把把这个属性设置为1才能连接嵌入式版本。

cs.UserID = "SYSDBA";

cs.Password = "masterkey";

cs.Dialect = 3;

2. 关于fb的一些网站

a) http://firebird.sourceforge.net

b) http://www.firebirdsql.org

c) http://www.ibphoenix.com/

d) http://wiki.sunyear.com.tw/index.php?title=FirebirdSQL(一个繁体中文网站,还不错)

e) http://www.dotnetfirebird.org/


你可能感兴趣的:(C++,c,.net,PHP,嵌入式)