当我尝试连接到本地sql server时,收到以下错误消息:
')' expected
<identifier> expected
----
(Alt-Enter显示提示)
因此给我错误的代码是:
String connectionUrl2=("jdbc:odbc:life","taf","taf4");
答案 0 :(得分:1)
不完全确定您是如何尝试连接的,但我建议采用以下方法:
首先,确保您的库中有sqlserver.jar
。算账:
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String userName = "your_username";
String password = "your_password";
String url = "jdbc:sqlserver://localhost:1433"+";databaseName=your_database_name";
Connection con = DriverManager.getConnection(url, userName, password);
从here
了解详情答案 1 :(得分:0)
如果您正在使用eclipse,那么这些语句将有助于连接mysql。只需根据您的架构和表名修改它们,您也必须导入mysql连接器。
连接connect = null;
PreparedStatement prep = null;
ResultSet result = null;
Statement state = null;
的Class.forName( “com.mysql.jdbc.Driver”);
连接=的DriverManager.getConnection( “JDBC:MySQL的://本地主机/ studentinfo用户=根&安培;口令= 7585?”); 状态= connect.createStatement();
prep = connect.prepareStatement(“插入学生值(默认,?,?,?,?,?,?)”);