摘要: public class BatchTest { /** * @param args * @throws SQLException */ public static void main(String[] args) throws SQLException { long start = System... 阅读全文
posted @ 2013-12-06 23:44 剑握在手 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 除了用存储过程还有以下方法可以获取: static int create() throws SQLException { Connection conn = null; PreparedStatement ps = null; ResultSet rs = null; try { // 2.建立连接 ... 阅读全文
posted @ 2013-12-06 20:22 剑握在手 阅读(4710) 评论(0) 推荐(0) 编辑
摘要: package test;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;/* 简陋工具类 */public final class JdbcUtils { private static String url="jdbc:mysql://localhost:3306/world"; private static String user = " 阅读全文
posted @ 2013-12-06 15:51 剑握在手 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 曾经有过一个两层构架的时代,前台就是界面,后台就是存储过程,存储过程把业务逻辑和数据操作一手包办了。 用存储过程写东西比较复杂,大部分Java程序员或许都对此不太了解,因为我们如今的三层架构使用高级语言来充当中间的业务逻辑层。但是这种东西关键时候还是很有用的,下面是一个简单例子: DELIMITER $$ #分隔符重新定义 DROP PROCEDURE IF EXISTS `worl... 阅读全文
posted @ 2013-12-06 15:47 剑握在手 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 一般MySql都有自带的命令提示符工具。如果从cmd下进入的话,要cd到mysql.exe所在目录,或者配置好path。mysql –u root password 以用户名root,密码password登陆mysqluse user 使用user数据库select @@tx_isolation; ... 阅读全文
posted @ 2013-12-06 14:43 剑握在手 阅读(257) 评论(0) 推荐(0) 编辑
摘要: public class SavePointTest { /** * @param args * @throws SQLException */ public static void main(String[] args) throws SQLException { test(); } static void test() throws SQLException { Connection conn = null; Statement st = null; ResultSet rs = null; Savepoint sp ... 阅读全文
posted @ 2013-12-06 12:56 剑握在手 阅读(372) 评论(0) 推荐(0) 编辑
摘要: public class TxTest { public static void main(String[] args) throws SQLException { test(); } static void test() throws SQLException { Connection conn = null; Statement st = null; ResultSet rs = null; try { conn = JdbcUtils.getConnection(); conn.setAutoCommit(false)... 阅读全文
posted @ 2013-12-06 12:42 剑握在手 阅读(2291) 评论(0) 推荐(1) 编辑
摘要: 工厂模式:http://baike.baidu.com/view/1306799.htm 参考博客一篇:http://blog.csdn.net/janepen/article/details/6470471 我在一个类中要调用一个Dao的接口,需要先实例一个实现了Dao接口的类的对象。关于这个Dao的实现类我只知道之后有可能会用JDBC实现也有可能用Hibernate实现,为了之... 阅读全文
posted @ 2013-12-06 11:23 剑握在手 阅读(206) 评论(0) 推荐(0) 编辑
返回顶部↑