S soarfans Unregistered / Unconfirmed GUEST, unregistred user! 2007-11-14 #1 RT 只要有连接数据库操作 服务就启动不来怎么办?<br>求DFW们想想办法
H hzjzxp Unregistered / Unconfirmed GUEST, unregistred user! 2007-11-14 #2 Service Application 中能ADOConnection的话,特别是动态设置参数时会出错!<br>上次我做一个小程序也是这样,最后改成静态的才搞定!<br>楼主可以试着改成设计时参数试一下!<br>具体原因我也没搞明白!
Service Application 中能ADOConnection的话,特别是动态设置参数时会出错!<br>上次我做一个小程序也是这样,最后改成静态的才搞定!<br>楼主可以试着改成设计时参数试一下!<br>具体原因我也没搞明白!
S soarfans Unregistered / Unconfirmed GUEST, unregistred user! 2007-11-14 #3 我连接数据库的方式是<br>const<br> s1 = 'Provider=SQLOLEDB.1;password=sa;Persist Security Info=False;User ID=sa;';<br> s2 = 'Initial Catalog=test';<br> s3 = ';Data Source=.';<br>---------------------------------------<br>adoclook.close;<br>adoclook.ConnectionString := s1 + s2 + s3;<br>adoclook.Open;<br>是不是这个有问题? 我也试过直接在adoconnection中静态连接 ,同样启动服务时提示<br>服务启动又关闭............
我连接数据库的方式是<br>const<br> s1 = 'Provider=SQLOLEDB.1;password=sa;Persist Security Info=False;User ID=sa;';<br> s2 = 'Initial Catalog=test';<br> s3 = ';Data Source=.';<br>---------------------------------------<br>adoclook.close;<br>adoclook.ConnectionString := s1 + s2 + s3;<br>adoclook.Open;<br>是不是这个有问题? 我也试过直接在adoconnection中静态连接 ,同样启动服务时提示<br>服务启动又关闭............
S soarfans Unregistered / Unconfirmed GUEST, unregistred user! 2007-11-14 #5 搞定了 只要把 adoconnection的cursorlocation属性设置为cluserserver 就OK了