PB+SQL Server2000连接问题!
PB编程中如何写配置文件与SQL Server2000 连接?
[DATABASE]
DBMS = SQLServer2000
ServerName=yy3
LogPass=jxc
LogId=jxc
AutoCommit=FALSE
DBParm=
Lock=FALSE
Prompt=FALSE
;主服务器参数
写了一下,不知道怎么写?初学请教
PB编程中如何写配置文件与SQL Server2000 连接?
[DATABASE]
DBMS = SQLServer2000
ServerName=yy3
LogPass=jxc
LogId=jxc
AutoCommit=FALSE
DBParm=
Lock=FALSE
Prompt=FALSE
;主服务器参数
写了一下,不知道怎么写?初学请教
在database profile 里面填一下
然后自动生成代码
复制过来到open()事件中就可以了
string ls_inifile="12345.ini"
SetProfileString (ls_inifile,"DataBase","ServerName","yy3")
SetProfileString (ls_inifile,"LogPass","jxc")
.
.
.
按这个格式写就OK了