jdbc 链接sqlserver2005的数据库设置

  上微软网站下载sqlserver2005 jdbc Driver 包
  
  1、将Microsoft SQL Server 2005 JDBC Driver\sqljdbc_1.2\chs\sqljdbc.jar包 copy到发布系统 的 web-inf\lib目录中
  2、将Microsoft SQL Server 2005 JDBC Driver\sqljdbc_1.2\chs\auth\x86(x64)\sqljdbc_auth.dll 文件copy到 windows\system32目录
  
  web-inf\fcconfig.xml 文件中的连接字符串如下设置
    <ds name="fhjtest" dbType="sqlserver"
   type="jdbc" jdbcDriver="com.microsoft.sqlserver.jdbc.SQLServerDriver" jdbcUrl="jdbc:sqlserver://localhost:1433;databaseName=eformtest;integratedSecurity=true;" user="sa" password="" />  


 注意:
 jdbcDriver="com.microsoft.sqlserver.jdbc.SQLServerDriver"
 jdbcUrl="jdbc:sqlserver://localhost:1433;databaseName=eformtest;integratedSecurity=true;"
 与sqlserver2000的写法稍有不同

你可能感兴趣的:(sql,Web,jdbc,SQL Server,Microsoft)