问题描述
- 新手求助!private static Connection Conn;
-
import java.sql.*; public class Jdbc { private static Connection Conn; //这一句起了什么作用 为什么没有这句运行就错误 public static void main(String [] args){ String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver"; String dbURL="jdbc:sqlserver://localhost:1433;DatabaseName=mydate"; String userName="sa"; String userPwd="lzm0922"; try{ Class.forName(driverName); Connection Conn=DriverManager.getConnection(dbURL,userName,userPwd); System.out.println("连接数据库成功"); Statement stmt = Conn.createStatement(); ResultSet rs=stmt.executeQuery("SELECT * FROM BOOK"); while(rs.next()){ String Bno=rs.getString("Bno"); System.out.println(Bno); System.out.println(rs.getString("Bname")); } rs.close(); stmt.close(); Conn.close(); } catch(Exception e){ e.printStackTrace(); System.out.print("连接失败"); } } } 把这一句的private改为public也出现 错误 为什么呢 求前辈帮助、
解决方案
看代码main函数是没有问题的,没有这一句private static Connection Conn;应该是没有问题的。
你说的错误是什么,提示编译错误?还是运行时错误。
如果是运行时错误,走入异常分支System.out.print("连接失败");中了吗?数据库连接失败的话,应该检查驱动jar是否导入。
解决方案二:
就你提供的程序代码来讲,很确定的告诉你,没有这句private static Connection Conn;也是可以运行的。
你声明的这个静态变量在你的程序中根本就没有使用到,你在main方法中又重新声明了一个同名的变量,如果你在IDE中写的话,会直接提示你最上面声明的变量没有使用过的。
解决方案三:
导入Java。SQL ;
公共类JDBC {
私有静态连接;
/ /这一句起了什么作用为什么没有这句运行就错误
public static void main(String [] args){
字符串DriverName =“COM。微软SQLServer JDBC sqlserverdriver。。。”;
字符串=“JDBC数据库:SQL Server:/ /本地:1433;DatabaseName& =创建”;
字符串用户名为“sa”;
字符串将=“lzm0922”;
尝试{
forName(DriverName)类;
连接也。getConnection(数据库,用户名,将);
系统。了println(“连接数据库成功”);
声明语句=康涅狄格州createstatement();
连接数据库为支撑。executeQuery(“选择从书”);
而(RS next()){
字符串不= rs.getstring(“无”);
系统。println(BNO)了;
系统。了。println(rs.getstring(“bname”));
}
的。();
为();
康涅狄格州();
}
catch(异常){
E. printstacktrace();
系统。从打印(“连接失败”);
解决方案四:
那位翻译很给力。。。。