有人可以帮我吗?我正在尝试使用 JAVA 执行 SQL 查询(到 Microsoft SQL)。但是,我的桌子上什么也没有发生。同样,也不例外。但我很确定这段代码直接连接到我的数据库。这是我的代码。
package Testing;
//import java.sql.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class TestingClass {
public static void main(String[] srg)
{
String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; // Start JDBC
String dbURL = "jdbc:sqlserver://localhost:1433;DatabaseName=OPERATIONS"; // Connect the server and the database
String userName="AppControlTeam";
String userPwd="*****";
//
Connection connection = null;
try{
Class.forName(driverName);
connection = DriverManager.getConnection(dbURL,userName,userPwd);
String sql = "DELETE FROM GFR_GROWTH_RATE";
PreparedStatement statement = connection.prepareStatement(sql);
statement.executeUpdate();
connection.close();
}
catch (Exception e){
e.printStackTrace();
}
}
}
我已经在包中添加了 JDBC 驱动程序。另外,我很确定这不是类路径问题,因为通过此代码连接到 DB 已经成功。
在此先感谢可以提供帮助的人!:D
-次郎