当前位置: 首页 > 工具软件 > Firebird > 使用案例 >

Firebird3基本使用

宗穆冉
2023-12-01

解决C#无法访问的情况:
1. 使用FirebirdSql.Data.FirebirdClient 5版本以上。
2.修改Firebird.conf配置文件WireCrypt为Enabled
#WireCrypt = Enabled (for client) / Required (for server)
WireCrypt = Enabled

C#连接字符串:

@"server=10.13.238.143;database=e:\temp\ee.gdb;user id=sysdba;password=masterkey;character set=UTF8;port number=3050"; //必须指定编码

是否允许远程访问:
#RemoteAccess = fase 禁止后,本地用127.0.0.1也无法访问了,不知这个参数如何理解

大小写:

在创建数据库时,表名、字段名等一定要大写,否则要打引号才能访问。在C#不要求大小写。

建表时,字段支持中文。

 

在使用FirebirdSql.Data.FirebirdClient5.9时遇到一个错误,无法引用另一个组件,不想深究,就是V5.5算了。

 

 类似资料: