我正在执行一个非常简单的SQL,当我在SQL Server Management Studio中运行它需要几秒钟。 但是当我使用JDBC在java中运行时,它会冻结。内存使用量从34MB到280MB。
public int size() {
int lines = 0;
string StringSize = "SELECT COUNT(BO_Numseq) FROM dbo.BOLETO";
try {
Statement statementL = connection.createStatement();
ResultSet rsLocal = statementL.executeQuery(StringSize);
rsLocal.next();
int size = rsLocal.getInt(1);
resetConnexion();
return size;
} catch (SQLException ex) {
Logger.getLogger(ModelTratamentoBoleto.class.getName()).log(Level.SEVERE, null, ex);
}
return lines;
public void resetConnexion() {
try {
connection = MSFConstants.controleur.getConnectionAutomat().getCnx();
statement = connection.createStatement();
rs = statement.executeQuery(stringCommand);
} catch (SQLException ex) {
Logger.getLogger(ModelTratamentoBoleto.class.getName()).log(Level.SEVERE, null, ex);
}
}
public class ConnectionAutomat {
private Connection cnx;
private String stringConnection;
public ConnectionAutomat() {
// System.out.println("start ConnectionAutomat");
MSFConstants.versionBdD = "NV02.06c";
String sysUserName = System.getProperty("user.name");
String activeBase="Automat";
if(MSFConstants.SWtestSandBox){
activeBase="AutomatSandbox";
}
stringConnection = "jdbc:sqlserver://localhost;"
+ "databaseName="+activeBase+";user="
+ MSFConstants.user.getLogonAutomat()
+ ";password="
+ MSFConstants.user.getPassAutomat();
}
// System.out.println("ConnectionAutomat stringConnection " + stringConnection);
try {
cnx = DriverManager.getConnection(stringConnection);
// System.out.println("ConnectionAutomat connection");
} catch (SQLException ex) {
// System.out.println("ConnectionAutomat erreur");
javax.swing.JOptionPane.showMessageDialog(null,
"Error ");
// Logger.getLogger(ConnectionAutomat.class.getName()).log(Level.SEVERE, null, ex);
MSFConstants.controleur.fermetureApplication();
}
}
public Connection getCnx() {
return cnx;
}
它挂起的行" ResultSet rsLocal = statementL.executeQuery(StringSize);"
我在Java Update 8 25上运行这个jar,所以我不会想到它的版本问题。
重要信息是它在上周运行良好,代码中没有任何变化。
我可以做些什么来完成这项工作?我完全迷失了,并且不太了解java。
谢谢!
答案 0 :(得分:-1)
这似乎更像是一个数据问题。尝试从数据库端分析该表并再次运行代码。