当前位置导航:炫浪网>>网络学院>>网页制作>>ASP.NET教程

firebird 连接嵌入式版本

1. dotnet连接fb Embedded Server版本
firebird分为两种版本,一种为安装版一种为嵌入式版本(该版本只需要一个“fbembed.dll”文件支持即可,此文件一定要是嵌入式版本中的(1.5.2版的文件大小为1489KB),不能使用安装版的fbembed.dll文件)
使用方法:
首先把 fb Embedded Server 的 fbembed.dll 拷贝到应用程序目录下。并且要使用fb.net provider 1.6以上的版本 最后在连接字符串中把 ServerType属性设置为“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/
相关内容
赞助商链接