2013年3月7日
摘要: MySQL数据库中有两个表,一个student,一个teacher其中student表结构如下teacher表如下有存储过程checkAllBEGINselect * from teacher;SELECT * FROM student;ENDJava代码如下 1 public static Map<String,Object> getAll(){ 2 Connection conn=null; 3 CallableStatement cs=null; 4 ResultSet rs=null; 5 Map<String,O... 阅读全文
posted @ 2013-03-07 22:20 l_veay 阅读(6661) 评论(1) 推荐(0) 编辑