免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1656 | 回复: 7
打印 上一主题 下一主题

读取mysql中数据的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-05-19 13:14 |只看该作者 |倒序浏览
为什么得到的结果(ResultSet)好像是空的一样。什么都取不出来,而同样的sql在mysql中验证是正确的。

似乎Statement的executeQuery和executeUpdate并没有执行。不知为什么。

注:同样的过程用access测试也通过了,可就是mysql???是不是有特殊的用法?
郁闷,帮帮小弟。。。。

论坛徽章:
0
2 [报告]
发表于 2003-05-21 10:05 |只看该作者

读取mysql中数据的问题

"得到的结果(ResultSet)好像是空的一样"????????

你先确定是不是空,不然可以举出一大堆可能

rs = statement.executeQuery(sql);
return rs.next();

论坛徽章:
0
3 [报告]
发表于 2003-05-21 12:07 |只看该作者

读取mysql中数据的问题

弄错了

不是空的,但是里面的东西都不对。具体情形如下:
数据库中:                        取出:
   整数                  以p开始的字母(0--p,1--q,2--r,....)
字符(英文字母)    空白
汉字                       乱麻

论坛徽章:
0
4 [报告]
发表于 2003-05-21 12:36 |只看该作者

读取mysql中数据的问题

不知你用的是什么连接,是JDBC还是ODBC桥阿
贴出代码看一看
不明白  》》 整数 以p开始的字母(0--p,1--q,2--r,....)
整数怎么会有字母?

论坛徽章:
0
5 [报告]
发表于 2003-05-22 11:36 |只看该作者

读取mysql中数据的问题

我用的是mysql带的包

那个没说清楚,这样:
如果字段值是“0”,取出来的就成了"p",
同样“1”成了“q"以次类推。

论坛徽章:
0
6 [报告]
发表于 2003-05-24 15:49 |只看该作者

读取mysql中数据的问题

cinc斑竹帮帮我

论坛徽章:
0
7 [报告]
发表于 2003-05-25 22:59 |只看该作者

读取mysql中数据的问题

贴代码出来看一下,再把表的字段数据类型说一下

论坛徽章:
0
8 [报告]
发表于 2003-05-27 12:31 |只看该作者

读取mysql中数据的问题

作的是一个封装数据库操作的类,在access测试全部通过,即使是mysql也好像只是编码的问题,因为生成表的操作也是可以成功的。

  1. import java.sql.*;
  2. import java.io.*;

  3. public class DB {
  4.     private Connection connection = null;
  5.     private Statement statement = null;
  6.     private ResultSet resultset=null;


  7.     public DB(String DBType, String user, String password, String DBName) {
  8.         try {
  9.             connection = InitDB(DBType, user, password, DBName);
  10.             statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
  11.         } catch (Exception e) {
  12.             e.printStackTrace();
  13.         }
  14.     }


  15.     private Connection InitDB(String DBType, String user, String password, String DBName)
  16.             throws ClassNotFoundException, SQLException {
  17.       
  18.         Connection c = null;
  19.         String DBUrl = null;
  20.         if (DBType == "access") {
  21.             Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
  22.             DBUrl = "jdbc:odbc:" + DBName;
  23.             c = DriverManager.getConnection(DBUrl);
  24.         }
  25.         if (DBType == "mysql") {
  26.             try {
  27.                 Class.forName("org.gjt.mm.mysql.Driver");         
  28.             } catch (Exception e) {
  29.                 e.printStackTrace();
  30.             }
  31.             DBUrl = "jdbc:mysql://localhost/" + DBName;
  32.             c = DriverManager.getConnection(DBUrl, user, password);
  33.         }
  34.         return c;
  35.     }


  36.     public int getTableCount(String tablename) {
  37.         String sql = "select count(*) from " + tablename;
  38.         int total = 0;
  39.         try {
  40.             resultset = statement.executeQuery(sql);
  41.             resultset.next();
  42.             total = resultset.getInt(1);
  43.             System.out.println("total:" + total);
  44.         } catch (SQLException sqle) {
  45.             sqle.printStackTrace();
  46.         }
  47.         return total;
  48.     }


  49.     public boolean deleteTable(String tablename) {
  50.         boolean success = false;
  51.         String sql = "drop table " + tablename;
  52.         try {
  53.             statement.execute(sql);
  54.             success = true;
  55.         } catch (SQLException sqle) {
  56.             sqle.printStackTrace();
  57.         }
  58.         return success;
  59.     }


  60.     public boolean createTable(String sql) {
  61.         boolean success = false;
  62.         try {
  63.             success = statement.execute(sql);
  64.         } catch (SQLException sqle) {
  65.             sqle.printStackTrace();
  66.         }
  67.         return success;
  68.     }


  69.     public void release() {  
  70.         try {
  71.             statement.close();
  72.             connection.close();
  73.             resultset.close();
  74.         } catch (SQLException sqle) {
  75.             sqle.printStackTrace();
  76.         }
  77.     }


  78.     public ResultSet executeQuery(String sql) {

  79.         try {
  80.             resultset = statement.executeQuery(sql);
  81.         } catch (SQLException sqle) {
  82.             sqle.printStackTrace();
  83.         }
  84.         return resultset;
  85.     }


  86.     public void executeUpdate(String sql) {
  87.         try {
  88.             statement.executeUpdate(sql);
  89.         } catch (SQLException sqle) {
  90.             sqle.printStackTrace();
  91.         }
  92.     }


  93.     public ResultSet getTables() {
  94.         ResultSet r = null;
  95.         try {
  96.             DatabaseMetaData dmd = connection.getMetaData();
  97.             r = dmd.getTables(null, null, null, null);
  98.         } catch (SQLException sqle) {
  99.             sqle.printStackTrace();
  100.         }
  101.         return r;
  102.     }


  103.     public void temp() {
  104.         ResultSet r = null;
  105.         try {
  106.             //statement.execute("select * from list order by id");
  107.             //statement.execute(" insert into list values('9','222','333','444','555','666','777'); ");
  108.             r = statement.executeQuery("select * from list order by id");
  109.             System.out.println(r);
  110.             System.out.println(connection);
  111.             ResultSetMetaData data=r.getMetaData();
  112.             System.out.println("列数:"+data.getColumnCount());
  113.             System.out.println("第一列:"+data.getColumnName(1));

  114.             int no = 1;
  115.             /*
  116.             String temp = result.getString (s);
  117.             if (temp != null) {
  118.             byte[] b = temp.getBytes ("8859_1");
  119.             temp = new String (b);
  120.             */

  121.             try {
  122.                 while (r.next()) {
  123.                     String temp;
  124.                     System.out.print(no + ":");
  125.                     for (int i = 1; i < 8; i++) {
  126.                         temp = r.getString(i);
  127.                         //这里用了转码,仍然不好使,
  128.                         //byte[] b=temp.getBytes("cp437");
  129.                         //temp=new String(b);
  130.                         System.out.print(temp);

  131.                         System.out.print("*");
  132.                     }


  133.                     System.out.println();
  134.                     no++;
  135.                 }
  136.             } catch (Exception e) {
  137.             }

  138.         } catch (SQLException e) {
  139.             e.printStackTrace();
  140.         }
  141.     }

  142.     public static void main(String args[]){
  143.        DB mysql = new DB("mysql", "nothing", "nothing", "bbs");
  144.        mysql.temp();


  145. //测试executeUpdate函数,有问题


  146. //测试geyTableCount()函数  ,有问题


  147. //测试建立数据表,函数execute,可以


  148.     }


  149. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP