- 论坛徽章:
- 0
|
读取mysql中数据的问题
作的是一个封装数据库操作的类,在access测试全部通过,即使是mysql也好像只是编码的问题,因为生成表的操作也是可以成功的。
- import java.sql.*;
- import java.io.*;
- public class DB {
- private Connection connection = null;
- private Statement statement = null;
- private ResultSet resultset=null;
- public DB(String DBType, String user, String password, String DBName) {
- try {
- connection = InitDB(DBType, user, password, DBName);
- statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- private Connection InitDB(String DBType, String user, String password, String DBName)
- throws ClassNotFoundException, SQLException {
-
- Connection c = null;
- String DBUrl = null;
- if (DBType == "access") {
- Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
- DBUrl = "jdbc:odbc:" + DBName;
- c = DriverManager.getConnection(DBUrl);
- }
- if (DBType == "mysql") {
- try {
- Class.forName("org.gjt.mm.mysql.Driver");
- } catch (Exception e) {
- e.printStackTrace();
- }
- DBUrl = "jdbc:mysql://localhost/" + DBName;
- c = DriverManager.getConnection(DBUrl, user, password);
- }
- return c;
- }
- public int getTableCount(String tablename) {
- String sql = "select count(*) from " + tablename;
- int total = 0;
- try {
- resultset = statement.executeQuery(sql);
- resultset.next();
- total = resultset.getInt(1);
- System.out.println("total:" + total);
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- return total;
- }
- public boolean deleteTable(String tablename) {
- boolean success = false;
- String sql = "drop table " + tablename;
- try {
- statement.execute(sql);
- success = true;
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- return success;
- }
- public boolean createTable(String sql) {
- boolean success = false;
- try {
- success = statement.execute(sql);
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- return success;
- }
- public void release() {
- try {
- statement.close();
- connection.close();
- resultset.close();
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- }
- public ResultSet executeQuery(String sql) {
- try {
- resultset = statement.executeQuery(sql);
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- return resultset;
- }
- public void executeUpdate(String sql) {
- try {
- statement.executeUpdate(sql);
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- }
- public ResultSet getTables() {
- ResultSet r = null;
- try {
- DatabaseMetaData dmd = connection.getMetaData();
- r = dmd.getTables(null, null, null, null);
- } catch (SQLException sqle) {
- sqle.printStackTrace();
- }
- return r;
- }
- public void temp() {
- ResultSet r = null;
- try {
- //statement.execute("select * from list order by id");
- //statement.execute(" insert into list values('9','222','333','444','555','666','777'); ");
- r = statement.executeQuery("select * from list order by id");
- System.out.println(r);
- System.out.println(connection);
- ResultSetMetaData data=r.getMetaData();
- System.out.println("列数:"+data.getColumnCount());
- System.out.println("第一列:"+data.getColumnName(1));
- int no = 1;
- /*
- String temp = result.getString (s);
- if (temp != null) {
- byte[] b = temp.getBytes ("8859_1");
- temp = new String (b);
- */
- try {
- while (r.next()) {
- String temp;
- System.out.print(no + ":");
- for (int i = 1; i < 8; i++) {
- temp = r.getString(i);
- //这里用了转码,仍然不好使,
- //byte[] b=temp.getBytes("cp437");
- //temp=new String(b);
- System.out.print(temp);
- System.out.print("*");
- }
- System.out.println();
- no++;
- }
- } catch (Exception e) {
- }
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- public static void main(String args[]){
- DB mysql = new DB("mysql", "nothing", "nothing", "bbs");
- mysql.temp();
- //测试executeUpdate函数,有问题
- //测试geyTableCount()函数 ,有问题
- //测试建立数据表,函数execute,可以
- }
- }
复制代码 |
|