【转】Mybatis/Ibatis,数据库操作的返回值

该问题,我百度了下,根本没发现什么有价值的文章;还是看源代码(详见最后附录)中的注释,最有效了!
insert,返回值是:新插入行的主键(primary key);需要包含<selectKey>语句,才会返回主键,否则返回值为null。
update/delete,返回值是:更新或删除的行数;无需指明resultClass;但如果有约束异常而删除失败,只能去捕捉异常。
queryForObject,返回的是:一个实例对象或null;需要包含<select>语句,并且指明resultMap;
queryForList,返回的是:实例对象的列表;需要包含<select>语句,并且指明resultMap;

我的配置文件如下(desktop_common_sqlMap.xml):

    <typeAlias alias="UnlockTagInfo" type="com.desktop.common.bean.UnlockTagInfo" /><resultMap class="UnlockTagInfo" id="UnlockTagInfoResult"><result column="id" property="id" jdbcType="INTEGER" /><result column="name" property="name" jdbcType="VARCHAR" /><result column="description" property="description" jdbcType="VARCHAR" /><result column="priority" property="priority" jdbcType="INTEGER" /></resultMap><insert id="insertUnlockTagInfo" parameterClass="map"><selectKey resultClass="int" keyProperty="id">selectnextval('desktop_unlock_tag_id_seq') as id</selectKey>insert intodesktop_unlock_tag(id,name,description,priority)values(#id:INTEGER#,#name:VARCHAR#,#description:VARCHAR#,#priority:INTEGER#)</insert><update id="updateUnlockTagInfo" parameterClass="map">updatedesktop_unlock_tagset modify_time=now(),priority=#priority:INTEGER#,name=#name:VARCHAR#,description=#description:VARCHAR#whereid=#id:INTEGER#</update><delete id="deleteUnlockTagInfo" parameterClass="int">delete fromdesktop_unlock_tagwhere id=#value:INTEGER#</delete><select id="countUnlockTagInfo" resultClass="int">select count(*)fromdesktop_unlock_tag</select><sql id="selectUnlockTagInfo">selectid,name,description,priorityfromdesktop_unlock_tag</sql><select id="findUnlockTagInfoById" parameterClass="int"resultMap="UnlockTagInfoResult"><include refid="selectUnlockTagInfo" />where id=#id:INTEGER#</select><select id="listUnlockTagInfo" parameterClass="map"resultMap="UnlockTagInfoResult"><include refid="selectUnlockTagInfo" />order bymodify_time desc limit #size:INTEGER#offset #start:INTEGER#</select>

我的DAO源码如下:

public class UnlockTagDaoImpl extends SqlMapClientDaoSupport implementsUnlockTagDao {@Overridepublic Integer addItem(String name, String desc, Integer priority) {SqlMapClientTemplate template = this.getSqlMapClientTemplate();Map<String, Object> args = new HashMap<String, Object>();args.put("name", name);args.put("description", desc);args.put("priority", priority);Object key = template.insert("DesktopCommon.insertUnlockTagInfo", args);return (Integer) key;}@Overridepublic boolean updateItem(Integer id, String name, String description,Integer priority) {SqlMapClientTemplate template = this.getSqlMapClientTemplate();Map<String, Object> args = new HashMap<String, Object>();args.put("id", id);args.put("name", name);args.put("description", description);args.put("priority", priority);try {int c = template.update("DesktopCommon.updateUnlockTagInfo", args);if (c > 0) {return true;}return false;} catch (Exception e) {return false;}}@Overridepublic boolean deleteItem(Integer id) {SqlMapClientTemplate template = this.getSqlMapClientTemplate();try {int c = template.delete("DesktopCommon.deleteUnlockTagInfo", id);if (c > 0) {return true;}return false;} catch (Exception e) {return false;}}@Overridepublic UnlockTagInfo findItemById(Integer id) {SqlMapClientTemplate template = this.getSqlMapClientTemplate();UnlockTagInfo item = (UnlockTagInfo) template.queryForObject("DesktopCommon.findUnlockTagInfoById", id);return item;}@Overridepublic PagedList<UnlockTagInfo> listAll(Integer nStart, Integer nSize,boolean bCountTotal) {SqlMapClientTemplate template = this.getSqlMapClientTemplate();PagedList<UnlockTagInfo> result = new PagedList<UnlockTagInfo>();if (bCountTotal) {int total = (Integer) template.queryForObject("DesktopCommon.countUnlockTagInfo");result.setTotal(total);}Map<String, Integer> args = new HashMap<String, Integer>();args.put("start", nStart);args.put("size", nSize);@SuppressWarnings("unchecked")List<UnlockTagInfo> items = template.queryForList("DesktopCommon.listUnlockTagInfo", args);result.setData(items);return result;}
}

 

关于ibatis的接口,参见其源码(com\ibatis\sqlmap\client\SqlMapExecutor.java):

/**  Copyright 2004 Clinton Begin**  Licensed under the Apache License, Version 2.0 (the "License");*  you may not use this file except in compliance with the License.*  You may obtain a copy of the License at**      http://www.apache.org/licenses/LICENSE-2.0**  Unless required by applicable law or agreed to in writing, software*  distributed under the License is distributed on an "AS IS" BASIS,*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*  See the License for the specific language governing permissions and*  limitations under the License.*/
package com.ibatis.sqlmap.client;import com.ibatis.common.util.PaginatedList;
import com.ibatis.sqlmap.client.event.RowHandler;
import com.ibatis.sqlmap.engine.execution.BatchException;import java.sql.SQLException;
import java.util.List;
import java.util.Map;/*** This interface declares all methods involved with executing statements* and batches for an SQL Map.** @see SqlMapSession* @see SqlMapClient*/
public interface SqlMapExecutor {/*** Executes a mapped SQL INSERT statement.* Insert is a bit different from other update methods, as it* provides facilities for returning the primary key of the* newly inserted row (rather than the effected rows).  This* functionality is of course optional.* <p/>* The parameter object is generally used to supply the input* data for the INSERT values.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @return The primary key of the newly inserted row.  This might be automatically*         generated by the RDBMS, or selected from a sequence table or other source.* @throws java.sql.SQLException If an error occurs.*/Object insert(String id, Object parameterObject) throws SQLException;/*** Executes a mapped SQL INSERT statement.* Insert is a bit different from other update methods, as it* provides facilities for returning the primary key of the* newly inserted row (rather than the effected rows).  This* functionality is of course optional.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @return The primary key of the newly inserted row.  This might be automatically*         generated by the RDBMS, or selected from a sequence table or other source.* @throws java.sql.SQLException If an error occurs.*/Object insert(String id) throws SQLException;/*** Executes a mapped SQL UPDATE statement.* Update can also be used for any other update statement type,* such as inserts and deletes.  Update returns the number of* rows effected.* <p/>* The parameter object is generally used to supply the input* data for the UPDATE values as well as the WHERE clause parameter(s).** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @return The number of rows effected.* @throws java.sql.SQLException If an error occurs.*/int update(String id, Object parameterObject) throws SQLException;/*** Executes a mapped SQL UPDATE statement.* Update can also be used for any other update statement type,* such as inserts and deletes.  Update returns the number of* rows effected.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @return The number of rows effected.* @throws java.sql.SQLException If an error occurs.*/int update(String id) throws SQLException;/*** Executes a mapped SQL DELETE statement.* Delete returns the number of rows effected.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the DELETE statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @return The number of rows effected.* @throws java.sql.SQLException If an error occurs.*/int delete(String id, Object parameterObject) throws SQLException;/*** Executes a mapped SQL DELETE statement.* Delete returns the number of rows effected.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @return The number of rows effected.* @throws java.sql.SQLException If an error occurs.*/int delete(String id) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a single object instance.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @return The single result object populated with the result set data,*         or null if no result was found* @throws java.sql.SQLException If more than one result was found, or if any other error occurs.*/Object queryForObject(String id, Object parameterObject) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a single object instance.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @return The single result object populated with the result set data,*         or null if no result was found* @throws java.sql.SQLException If more than one result was found, or if any other error occurs.*/Object queryForObject(String id) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* the supplied result object.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @param resultObject    The result object instance that should be populated with result data.* @return The single result object as supplied by the resultObject parameter, populated with the result set data,*         or null if no result was found* @throws java.sql.SQLException If more than one result was found, or if any other error occurs.*/Object queryForObject(String id, Object parameterObject, Object resultObject) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @return A List of result objects.* @throws java.sql.SQLException If an error occurs.*/List queryForList(String id, Object parameterObject) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @return A List of result objects.* @throws java.sql.SQLException If an error occurs.*/List queryForList(String id) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects within a certain range.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @param skip            The number of results to ignore.* @param max             The maximum number of results to return.* @return A List of result objects.* @throws java.sql.SQLException If an error occurs.*/List queryForList(String id, Object parameterObject, int skip, int max) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects within a certain range.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @param skip            The number of results to ignore.* @param max             The maximum number of results to return.* @return A List of result objects.* @throws java.sql.SQLException If an error occurs.*/List queryForList(String id, int skip, int max) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns a number of* result objects that will be handled one at a time by a* RowHandler.* <p/>* This is generally a good approach to take when dealing with large sets* of records (i.e. hundreds, thousands...) that need to be processed without* eating up all of the system resources.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @param rowHandler      A RowHandler instance* @throws java.sql.SQLException If an error occurs.*/void queryWithRowHandler(String id, Object parameterObject, RowHandler rowHandler) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns a number of* result objects that will be handled one at a time by a* RowHandler.* <p/>* This is generally a good approach to take when dealing with large sets* of records (i.e. hundreds, thousands...) that need to be processed without* eating up all of the system resources.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @param rowHandler      A RowHandler instance* @throws java.sql.SQLException If an error occurs.*/void queryWithRowHandler(String id, RowHandler rowHandler) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects a page at a time.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @param pageSize        The maximum number of result objects each page can hold.* @return A PaginatedList of result objects.* @throws java.sql.SQLException If an error occurs.* @deprecated All paginated list features have been deprecated*/PaginatedList queryForPaginatedList(String id, Object parameterObject, int pageSize) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects a page at a time.* <p/>* This overload assumes no parameter is needed.** @param id              The name of the statement to execute.* @param pageSize        The maximum number of result objects each page can hold.* @return A PaginatedList of result objects.* @throws java.sql.SQLException If an error occurs.* @deprecated All paginated list features have been deprecated*/PaginatedList queryForPaginatedList(String id, int pageSize) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects that will be keyed into a Map.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @param keyProp         The property to be used as the key in the Map.* @return A Map keyed by keyProp with values being the result object instance.* @throws java.sql.SQLException If an error occurs.*/Map queryForMap(String id, Object parameterObject, String keyProp) throws SQLException;/*** Executes a mapped SQL SELECT statement that returns data to populate* a number of result objects from which one property will be keyed into a Map.* <p/>* The parameter object is generally used to supply the input* data for the WHERE clause parameter(s) of the SELECT statement.** @param id              The name of the statement to execute.* @param parameterObject The parameter object (e.g. JavaBean, Map, XML etc.).* @param keyProp         The property to be used as the key in the Map.* @param valueProp       The property to be used as the value in the Map.* @return A Map keyed by keyProp with values of valueProp.* @throws java.sql.SQLException If an error occurs.*/Map queryForMap(String id, Object parameterObject, String keyProp, String valueProp) throws SQLException;/*** Starts a batch in which update statements will be cached before being sent to* the database all at once. This can improve overall performance of updates update* when dealing with numerous updates (e.g. inserting 1:M related data).** @throws java.sql.SQLException If the batch could not be started.*/void startBatch() throws SQLException;/*** Executes (flushes) all statements currently batched.** @return the number of rows updated in the batch* @throws java.sql.SQLException If the batch could not be executed or if any of the statements*                               fails.*/int executeBatch() throws SQLException;/*** Executes (flushes) all statements currently batched.** @return a List of BatchResult objects.  There will be one element in the*  list for each sub-batch executed.  A sub-batch is created by adding a statement*  to the batch that does not equal the prior statement. * @throws SQLException if a database access error occurs, or the drive*   does not support batch statements* @throws BatchException if the driver throws BatchUpdateException* @see com.ibatis.sqlmap.engine.execution.BatchException*/List executeBatchDetailed() throws SQLException, BatchException;
}

 

 

转载自:http://blog.csdn.net/gaojinshan/article/details/24308313

 

转载于:https://www.cnblogs.com/gmq-sh/p/4386598.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/431911.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

解密多媒体封装解封装框架

上一篇文章我们搭好了环境并编译出所需的ffmpeg库&#xff0c;本篇我们讨论如何利用ffmpeg提供的API函数进行多媒体文件的解封装&#xff08;demux&#xff09;过程。在讲解之前&#xff0c;我们需要了解一些基本的多媒体文件知识&#xff0c;大虾请飘过。 容器格式&#xff1a…

python入门及日常应用_python的日常应用-入门篇02

大部分人在编写自己第一个程序的时候会做什么&#xff1f;当然是让你的程序对我们的世界大喊一声“Hello world!”了。今天我们来学习的便是Python中的输出语句。如何让你的程序“说话”&#xff1f;我们想要让程序帮我们做事之前首先要教会程序怎么“说话”&#xff0c;这样我…

bzoj 3611

和BZOJ消耗站一样&#xff0c;先将那个询问的简图构建出来&#xff0c;然后就是简单的树形DP。 &#xff08;倍增数组开小了&#xff0c;然后就狂WA&#xff0c;自己生成的极限数据深度又没有那么高&#xff0c;链又奇迹般正确&#xff09; 1 #include <cstdio>2 #includ…

vscode添加源文件_VSCode自制的IDE编译多个源文件

文/EdwardVSCode的预定义变量我们上一篇文章中讲述了如何将MinGW工具嵌入到VSCode文本编辑器中&#xff0c;在这个配置的过程中&#xff0c;我们只需要通过修改VSCode生成的“luanch.json”和“task.json”两个JSON文件中的特定字段&#xff0c;就可以实现开发环境的搭建。那么…

c# 第四课 interfaces

An interface is a contract(协定) that guarantees to a client how a class or struct will behave.When a class implements an interface(实现一个接口), it tells any potential(可能的) client “I guarantee I’ll support all the methods, properties, events, and in…

mysql+自动还原备份_Mysql 自动备份与恢复

自动备份MySql 5.0有三个方案&#xff1a;备份方案一&#xff1a; 通过 mysqldump命令,直接生成一个完整的 .sql 文件Step 1: 创建一个批处理(说明&#xff1a;root 是mysql默认用户名, aaaaaa 是mysql密码, bugtracker 是数据库名)------------mySql_backup.bat--------------…

SqlServer按时间自动生成生成单据编号

SET _tmpDateTime GETDATE() EXEC dbo.Dtw_Common_GenerateProofCode ProofType SO,WhsCodeWhsCode, ProofDate _tmpDateTime, RtnCode _tmpProofCode OUTPUT --生成的最终的CODE USE [SZVB]GO/****** Object: StoredProcedure [dbo].[Dtw_Common_GenerateProofCode]…

hive创建分区表 指定分隔符_HIVE 对于分区表的操作

CREATE EXTERNALTABLE IF NOT EXISTS data_zh(ROWKEY STRING,STATION INT,YEAR INT,MONTH INT,DAY INT,HOUR INT,MINUTE INT,)PARTITIONED BY (AGE INT)指定分区(此列并没真正存储列&#xff0c;也就是不存于你的数据中。但是如果你的数据从Oracle按年份导出&#xff0c;按照年…

Web Service 学习

1. Web services 平台的元素&#xff1a; SOAP (简易对象访问协议) UDDI (通用描述、发现及整合) WSDL (Web services 描述语言)1.1 什么是 SOAP&#xff1f; 基本的 Web services 平台是 XML HTTP。 SOAP 指简易对象访问协议 SOAP 是一种通信协议 SOAP 用于应用程序之间的通信…

java高级mysql面试题_Java高级面试题

一.基础知识&#xff1a;1)集合类&#xff1a;List和Set比较&#xff0c;各自的子类比较(ArrayList&#xff0c;Vector&#xff0c;LinkedList&#xff1b;HashSet&#xff0c;TreeSet)&#xff1b;2)HashMap的底层实现&#xff0c;之后会问ConcurrentHashMap的底层实现&#x…

转:Oracle 中union的用法

UNION 指令的目的是将两个 SQL 语句的结果合并起来,可以查看你要的查询结果. 例如: SELECT Date FROM Store_Information UNION SELECT Date FROM Internet_Sales 注意:union用法中,两个select语句的字段类型匹配,而且字段个数要相同,如上面的例子,在实际的软件开发过程,会遇到…

mysql skip_counter_mysql的三个故障解决小结

mysql使用过程中经常会遇到的三个故障&#xff0c;在此小结一下。1、MySQl服务无法启动我们在使用mysql的过程中&#xff0c;常会遇到MySQl服务无法启动&#xff0c;具体报错信息&#xff1a;Starting MySQL ERROR.The server quit without updating PID file (/[FAILED]l/mysq…

Httpd 使用ip可以访问,localhost和127.0.0.1不能访问

解决方法&#xff1a;打开/etc/httpd/conf目录下的httpd.conf文件&#xff0c; 加入 Listen 127.0.0.1:81 加入后&#xff1a; Listen xxx.xxx.xxx.xxx:81 Listen 127.0.0.1:81 其中xxx.xxx.xxx.xxx是我的ip 这样通过ip、localhost、127.0.0.1都可以访问了 转载于:https://www.…

如何将每一条记录放入到对应的范围中

编程序的时候遇到一个问题&#xff1a; 画热图 &#xff1a;计算热力值--->画网格&#xff0c;将在一定范围内定位出的mac累积计数--->编写出了定位程序&#xff0c;但是如何将每个具体的坐标值放入对应的范围&#xff08;网格&#xff09;--->因为具体坐标和网格选取…

mysql主从进行扩展_Mysql主从知识扩展部分1

一、使用mysql-proxy 快速实现mysql 集群 读写分离1、有两种方法&#xff1a;a)程序代码内部实现&#xff0c;对select操作分发到从库&#xff0c;其他到主库&#xff0c;再生产环境中应用比较广泛&#xff0c;比较知名的有DISCUZX2&#xff0c;优点性能好&#xff0c;成本低&a…

Python之异常追踪模块:traceback

正常时输出追踪信息&#xff1a; import traceback def stack():print The python stack:traceback.print_stack() from twisted.internet import reactor reactor.callWhenRunning(stack) reactor.run()#摘录来自: likebeta. “Twisted与异步编程入门”。 iBooks. 异常时输出…

mysql事务所_mysql事务

1.事务的ACID属性事务(Database Transaction) &#xff0c;是指作为单个逻辑工作单元执行的一系列操作。事务处理可以确保除非事务性单元内的所有操作都成功完成&#xff0c;否则不会永久更新面向数据的资源。通过将一组相关操作组合为一个要么全部成功要么全部失败的单元&…

[草稿]挂载新硬盘

查看新硬盘&创建分区 xxxxxx:/dev$ sudo fdisk -l [sudo] password for xxx: Disk /dev/sda: 85.9 GB, 85899345920 bytes 255 heads, 63 sectors/track, 10443 cylinders, total 167772160 sectors Units sectors of 1 * 512 512 bytes Sector size (logical/physical):…

php mysql 迁移_将phpstudy中的mysql迁移至Linux教程

项目目的将原来windows环境中使用phpstudy搭建的mysql 5.5.53 中的数据迁移至新主机Linux环境中环境情况新主机系统平台&#xff1a;CentOS release 7.4 (Final) 内核 3.10.0-693.el7.x86_64mysql环境&#xff1a;mysql> statusServer version: 5.6.39-log…

Swift 操作符

这里只记录一些swift特殊的运算符 1.swift里面 仅仅进行赋值操作&#xff0c;不再向右边返回左值 2.模运算的操作数可以是小数了 3.Nil Coalescing Operator nil coalescing operator用来判断一个可选值是否有值&#xff0c;如果没有的话就赋予其一个缺省值 注意这里面“&…