2019年1月28日

摘要: https://aokunsang.iteye.com/blog/936230 阅读全文
posted @ 2019-01-28 22:14 starzyn 阅读(114) 评论(0) 推荐(0) 编辑

2018年11月1日

摘要: https://www.jb51.net/article/142025.htm 阅读全文
posted @ 2018-11-01 21:48 starzyn 阅读(294) 评论(0) 推荐(0) 编辑

2018年10月23日

摘要: https://blog.csdn.net/zhangxiao93/article/details/53677764 亲测有效 阅读全文
posted @ 2018-10-23 16:55 starzyn 阅读(407) 评论(0) 推荐(0) 编辑

2018年10月22日

摘要: https://blog.csdn.net/qq_38228254/article/details/78521155 本人亲测有效 阅读全文
posted @ 2018-10-22 13:15 starzyn 阅读(3271) 评论(0) 推荐(0) 编辑

2018年4月2日

摘要: 在进行与数据库的交互过程中,由数据库查询到的数据放在 map 中,由 map 到 JavaBean 的过程中可以使用 BeanUtils.populate(map,bean)来进行转换 这里要处理的问题是,populate 仅仅只能转换基本类型,对于date 类型的是不能由 String --> D 阅读全文
posted @ 2018-04-02 07:36 starzyn 阅读(2679) 评论(0) 推荐(0) 编辑

2018年3月26日

摘要: https://blog.csdn.net/zht741322694/article/details/79013093 阅读全文
posted @ 2018-03-26 16:31 starzyn 阅读(792) 评论(0) 推荐(0) 编辑

2018年3月25日

摘要: DBUtills: *********************** 1:创建对象:QueryRunner的对象,其中创建的方式有两种: ①QueryRunner qr = new QueryRunner(); **********这种是不用传递形参的; ②QueryRunner qr = new Q 阅读全文
posted @ 2018-03-25 22:33 starzyn 阅读(211) 评论(0) 推荐(0) 编辑

2018年3月19日

摘要: http://blog.csdn.net/qq_35523593/article/details/78545530 阅读全文
posted @ 2018-03-19 13:43 starzyn 阅读(329) 评论(0) 推荐(0) 编辑

2017年7月21日

摘要: create or replace function sum_pro( v_a number, v_b number ) return number is -- v_result number(10);//如果没有is,则编译不通过 begin --select v_a+v_b into v_result from... 阅读全文
posted @ 2017-07-21 10:54 starzyn 阅读(318) 评论(0) 推荐(0) 编辑

2017年7月8日

摘要: 1 package com.at221.jdbc; 2 3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.sql.*; 6 import java.util.Properties; 7 8 import com.mysql.jdbc.Connection; 9... 阅读全文
posted @ 2017-07-08 15:07 starzyn 阅读(337) 评论(0) 推荐(0) 编辑