摘要: 数据库初始化:CREATE DATABASE school;-- 创建表:courseCREATE TABLE `course` ( `cno` VARCHAR (12) NOT NULL DEFAULT '', `cname` VARCHAR (12) NOT NULL, `cp... 阅读全文
posted @ 2015-08-19 15:39 pepelu 阅读(593) 评论(0) 推荐(0) 编辑
摘要: java连接数据库,基础:   使用PrepareStatement操作返回值:   使用CallableStatement调用数据库存储过程:   阅读全文
posted @ 2015-08-19 15:26 pepelu 阅读(196) 评论(0) 推荐(0) 编辑
摘要: http://www.importnew.com/15524.html饿汉式单例:public class Singleton { private static Singleton singleton = new Singleton(); private Singleton(){... 阅读全文
posted @ 2015-08-19 13:49 pepelu 阅读(120) 评论(0) 推荐(0) 编辑