ApacheDbUtilsUpdate
ApacheDbUtilsUpdate
package p1; import com.DataSourceUtil;
import org.apache.commons.dbutils.QueryRunner; public class ApacheDbUtilsUpdate {
public static void main(String[] args) throws Exception {
// add();
// update();
delete();
} public static int add() throws Exception {
QueryRunner queryRunner = new QueryRunner(DataSourceUtil.getDataSourceC3p0());
String sql = "insert into student values(?,?)";
return queryRunner.update(sql, "", "zl");
} public static int update() throws Exception {
QueryRunner queryRunner = new QueryRunner(DataSourceUtil.getDataSourceC3p0());
String sql = "update student set name=? where id=?";
return queryRunner.update(sql, "xx", "");
} public static int delete() throws Exception {
QueryRunner queryRunner = new QueryRunner(DataSourceUtil.getDataSourceC3p0());
String sql = "delete from student where id=?";
return queryRunner.update(sql, "");
} }
ApacheDbUtilsUpdate的更多相关文章
随机推荐
- pwnable.kr-balckjack-Writeup
MarkdownPad Document *:first-child { margin-top: 0 !important; } body>*:last-child { margin-botto ...
- JEECG笔记
一.修改默认主题 找到SysThemesEnum.java类,路径为:\src\org\jeecgframework\core\enums\SysThemesEnum.java,在toEnum(Str ...
- Centos6.10-FastDFS-存储器Http配置
Centos610系列配置 1.准备配置 cd /opt/download/fastdfs-master/confcp http.conf /etc/fdfs/http.confcp mime.typ ...
- 国际化支持、activity生命周期、屏幕翻转的ui适配
国际化 对于手机的不同语言做出不同的语言描述,这里只是简单的提一下,实际上针对比较大型的项目,有可能不同的语言要做不同的ui适配. 例如下面:中文长度不长但是在德语中占据很长的位置,这个就要针对性的适 ...
- What Is A Airless Pump Bottle?
What is an airless pump bottle?Unlike conventional dispensers that use a tube or suction tube to dra ...
- 使用php-vmstat遇到的麻烦
workerman-vmstat是一个基于workerman的扩展,用于监听服务器应用对内存.cpu消耗的友好的查看功能,具体介绍可以去git上看: https://github.com/wal ...
- 【visio】 设计
1."设计" 包含了 页面.布局和主题相关设置 2."页面设置" 包含:打印.绘制区域.打印区域.页面缩放.页属性以及替换文字. 替换文字 放在页面设置里,这个 ...
- 数制的运用-CodeForces - 535B
题解: 因为每一位只可能是4或者7,可以类比二进制的思想. 基数为2,每一位的权值为2i-1:数字4表示的大小为1*2i-1:数字7表示的大小为2*2i-1. 将给定的n按照这种方法进行分解,求和.即 ...
- MYSQL 传汉字获取拼音首字母
--获取单个汉字首字母拼音 --CREATE DEFINER=`by`@`%` FUNCTION `fun_first_pinyin`(`P_NAME` VARCHAR(5)) RETURNS var ...
- 网络辅助北斗/GPS位置服务平台业务量突破10亿次
导读 北斗卫星导航系统日渐成熟,相关服务也在逐步丰富.深入.为了推动北斗定位功能在手机中的普及,中国信息通信研究院2017年就发布了网络辅助北斗/GPS位置服务平台,支持95%以上商用芯片及终端的北斗 ...