public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
Connection c=null;
request.getParameter("source");
request.getParameter("destination");
request.getParameter("class");
response.setContentType("text/html");
PrintWriter out = response.getWriter();
try{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
c= DriverManager.getConnection("jdbc:sqlserver://localhost:1433;instanceName=sqlexpress;databaseName=vacation;selectMethod=cursor","","");
c.username = "sa";
c.password = "kassa@123";
c.createStatement();
我正在尝试测试jsp模型! http://i.stack.imgur.com/5blfT.png使用rspec但我遇到错误如何解决此错误请给我一些想法。
答案 0 :(得分:0)
您正在错误的路径中创建连接。 请改用以下方法来检索连接
getConnection("jdbc:sqlserver://localhost:1433;instanceName=sqlexpress;databaseName=vacation;selectMethod=cursor",
"sa", "kassa@123")
以下内容无法使用,因为它们无法公开连接。 (字段始终是私有的。)
c.username = "sa";
c.password = "kassa@123";
答案 1 :(得分:0)
这是方法定义的样子 -
public static Connection getConnection(String url,
String user,
String password)
你的表现很奇怪。在上面的方法中提供用户和密码为“”(空字符串),然后尝试访问这些私有变量?