- 论坛徽章:
- 0
|
请问下面的代码输出为什么会?
找到: void
需要: int
import javax.swing.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Database {
static {
// This is a static block, so it will only be called once (the first time
// the class is loaded). Uncomment the line for the appropriate driver
try {
//Class.forName("org.postgresql.Driver");
Class.forName("oracle.jdbc.driver.OracleDriver");
//Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
} catch (Exception e) {
int option=0;
option=JOptionPane.showMessageDialog(null,"Are you sure you want to update?\nThis cannot
be undone",
"Confirm Update",
// JOptionPane.YES_NO_OPTION,
JOptionPane.ERROR_MESSAGE);
}
}
private Connection conn;
public Database() throws SQLException {
// uncomment the appropriate line here.
// Also, change 'alacritas' to 'lawson' if you are in Launceston, and change
// 'username' and 'password' as applicable.
//conn = DriverManager.getConnection("jdbc:postgresql://alacritas/username", "username", "password");
conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:qianyuan", "scott", "tiger");
//conn = DriverManager.getConnection("jdbc:odbc:qian", "", "");
}
public ResultSet select(String sql) throws SQLException {
Statement stmt = conn.createStatement();
return stmt.executeQuery(sql);
}
public int update(String sql) throws SQLException {
Statement stmt = conn.createStatement();
return stmt.executeUpdate(sql);
}
public void disconnect() throws SQLException {
conn.close();
}
}
[ 本帖最后由 perryhg 于 2006-4-4 01:36 编辑 ] |
|