官网:http://www.mybatis.org/mybatis-3/index.html在使用mybatis作为ORM框架时,我通常更喜欢使用注解而非xml配置文件的方式。业务场景:添加记录之后需要返回自己自增长的主键字段值。通常,我们会将DAO层写成如下代码(以添加员工Staff为例): 显然 ...
分类:
其他好文 时间:
2017-06-29 13:30:38
阅读次数:
10139
# 只实现作业要求的查询功能 # 增加,删除,修改功能为选做题 # 创建员工信息表 # 用户输入查询命令 # 分析用户输入的命令,从命令中提取需要查询的关键字 # 根据关键字来查询内容并输出 staff_table=r'F:\python文件\day21生成器\员工信息表.txt' def sele... ...
分类:
其他好文 时间:
2017-06-18 20:53:55
阅读次数:
216
staff_table.txt 里的内容: 查询命令格式:select age,name from satff_table where dept == IT/age > 20/其他条件 修改命令格式:update staff_table set dept = market where where d ...
分类:
数据库 时间:
2017-06-18 13:24:36
阅读次数:
338
在上一节介绍了关于BOS项目底层的查询操作,接下来介绍一下curd里的其他三项操作步骤 一、 取派员添加 利用easyui在staff.jsp页面里构造添加页面(相关JavaBean创建步骤省略) 1. 增加很简单,所以这里拓展一下校验规则,对手机号进行一下校验 2. 对应手机号输入框应用上面的规则 ...
分类:
其他好文 时间:
2017-06-17 10:22:01
阅读次数:
156
使用联合索引应该注意: customer_id列的离散程度更高,建联合索引时应该INDEX(customer_id,staff_id); ...
分类:
数据库 时间:
2017-06-02 14:45:37
阅读次数:
154
作业 1: 员工信息表程序,实现增删改查操作 可进行模糊查询,语法至少支持下面3种: select name,age from staff_table where age > 22 select * from staff_table where dept = "IT" select * from s ...
分类:
编程语言 时间:
2017-05-18 01:35:30
阅读次数:
352
程序可实现以下功能:1、查询,输入select name,age from staff_table where age > 22,查询到符合要求的信息; 输入select * from staff_table where dept = "IT",查询到符合要求的信息; 输入select * from ...
分类:
编程语言 时间:
2017-05-17 21:31:45
阅读次数:
1833
级联查询 where store_id in(select store_id from store_staff where user_id = #{user_id}) 判断赋值 (case when (select use_name from users s where use_id = p.op_ ...
分类:
数据库 时间:
2017-05-12 13:42:45
阅读次数:
164
例如 :WHERE(" use_id =(select user_id from store_staff where store_id="+ store_id + ")"); 改为 WHERE(" use_id =any(select user_id from store_staff where s ...
分类:
其他好文 时间:
2017-05-12 13:21:02
阅读次数:
155