iBatis is an object-relational mapping framework for Java. It uses XML descriptors to bridge SQL queries and Java objects.
3
votes
3answers
66 views
Update SQL when where clause condition can be null
I have an update SQL statement to update a row
UPDATE COM_TRANSACTION_LOGS
SET END_TIME = ?,
RESPONSE = ?
WHERE
TRANSACTION_ID = ?
AND
MESSAGE_ID ...
0
votes
1answer
13 views
mybatis update is not working
I'm using mybatis for the update and query doesn't update the table: can any one help me whats going wrong
configuration
<update id="updateInfo" parameterType="int" timeout="20">
...
0
votes
0answers
19 views
iBatis and Sql*Loader Incompatability?
I've come across something that seems rather odd concerning the behavior of iBatis sqlmaps hitting an Oracle table and the SQL*Loader.
I'm running the SQL*Loader from C# through a batch file that is ...
0
votes
0answers
60 views
Ibatis Mysql, SET autocommit=1 is executed for every query. How to prevent this?
We are using Tomcat & Spring with IBatis & Mysql in our webaplication.
For each query executed on MYsqlDB "SET autocommit=1" is getting executed before and after the query.
How to prevent ...
-1
votes
0answers
42 views
assigning checkboxes to all the usernames in jsp [closed]
I want to assign checkboxes individually to all the usernames that exist in a table and accessall the details of a particular username based on the checkbox selected.I'm using Ibatis.Can anyone help ...
-1
votes
1answer
123 views
Throwable while attempting to get a new connection: null: javax.resource.ResourceException: Could not create connection
IJ000604: Throwable while attempting to get a new connection: null: javax.resource.ResourceException: Could not create connection
at ...
0
votes
0answers
69 views
enable MyBatis SQL logs in WebSphere Application Server, log4j
We are using mybatis 3, I am want to see the SQL logs but couldn't find how to enable it. I am using log4j in my application.
I followed this mybatis documentation - ...
0
votes
2answers
58 views
What ORM should I use for Spring MVC Project with Derby db?
i'm developing a web project which use Spring MVC and an apache derby embedded. This database contains a table for Users, Roles and Users-Roles. I have to do a typical CRUD. Due to it is my first time ...
0
votes
1answer
112 views
mybatis mapper xml: The content of element type “mapper” must match
I'm having a hard time getting my simple mybatis file to work. I have this file:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
-1
votes
2answers
149 views
Ibatis insert operation
Hi I am trying to insert a list of object through ibatis but i am getting an exception like
org.apache.ibatis.mapping.SqlMapperException: The expression 'boxlist' evaluated to a null value.
...
0
votes
1answer
272 views
How to map Enum type in mybatis using typeHandler on insert
I have strugled with enum for a while now but it will not go my way.
Is there anyone that can give me hint?
I am trying to use Enum type in MySql and I also use an Enum class in my code.
As the code ...
1
vote
0answers
57 views
db connection deadlock
We have a web application that has been running well for several years. The web application was using mysql, spring-1.2.6, and ibatis.
After replacing spring-1.2.6 with spring-3.2.0, we started to ...
0
votes
1answer
44 views
How Mybatis (iBatis) read my private variable?
I was wondering how Mybatis get the private variable in Java.
For example:
Let's say we have a Java class called Foo:
public class Foo{
private int foolID;
public Foo(int foolID){
...
0
votes
0answers
39 views
Mysql 5.5 - Prepared Statement instance count runaway (millions)
If anyone has experienced this or has any ideas it would be greatly appreciated...
I'll get right to the point:
The system in question uses java6, tomcat6 and ibatis
Since upgrading the database ...
1
vote
1answer
577 views
Calling Oracle stored procedures with MyBatis
I am in the process of moving our database over to Oracle from SQL Server 2008 but cannot get MyBatis to work.
Given the following example:
UserMapper.xml (example)
<resultMap type="User" ...
0
votes
2answers
79 views
pass multiple value to <isNotEmpty> property
I'm new to iBatis. I would like if it's possible to pass multiple values into xml.
for example,
<select id="getSth" resultClass="Object" parameterClass="Object">
select * from table
...
0
votes
2answers
177 views
MyBatis - returning empty value when IN operator is used
I have a query like below,
<select id="getTableName" resultType="java.lang.String" parameterType="java.lang.String">
Select Distinct TableName From TABLE_COLUMN_MAPPING Where COLUMNNAME IN ...
0
votes
0answers
52 views
How would you delete objects after save?
I have a form with a GridView (bound to a list of POCOs), a delete row button and a save button. The delete button only removes the items from the gridview (through gridview.DeleteRow()), the save ...
1
vote
0answers
62 views
iBatis multiple queries result to single model instace
Generally an iBatis select query returns a new instance of the resultMap class. Is it possible to somehow pass a class' instance to SQLMapper's queryForObject method, so instead of returning a new ...
0
votes
1answer
132 views
Mybatis to return a string not List of String
I have a straight forward query like,
Select emp_Name from Employee where empID=123
How can i get the return as only String instead of List<String>, as here this query will return only one ...
0
votes
0answers
40 views
Persisting XML data type in DB2 using iBatis
I am trying to persist XML data in DB2 using ibatis. I have declared my domain object's attribute corresponding to this xml dataType as Document. Is this correct? With Jdbc and other things ...
0
votes
0answers
82 views
Multiple RPC:Completed event and not single SQL:Batch* event getting fired for insert statements when MyBatis Batch Execution is used
I am using MyBatis batch execution support for performing bulk insert to database in SQL Server. I figured out from SQL Server profiler that it shows RPC:Completed event for each insert statment. I ...
0
votes
1answer
404 views
How to control the batch-size when using MyBatis ExecutorType.Batch for batch insert operations
I am trying to use mybatis batch execution (ExecutorType.BATCH) support. I want to batch insert few records in database performance and scalability reason. I want to override the default Mybatis batch ...
0
votes
0answers
121 views
IBatis conditional insert and update
I am new to IBatis and currently using it in my project. I have a requirement wherein I have to insert a new row in to a table when it does not exist (By checking a foreign key which we already have ...
9
votes
1answer
339 views
Saving/Updating collections with mybatis, what is the common practice?
I've decided to try and use mybatis for a new project. I'm decently familiar with SQL, and I've had some bad experiences with hibernate recently so I'm looking for a more low-level approach to DAO.
...
0
votes
0answers
76 views
iBatis Caching Issues
We have a web application running in Websphere 7.0 with Spring, iBatis and Oracle.
I have also enabled Caching in iBatis for better UI performance.
Sample Cache statement in my sql.xml file
...
1
vote
0answers
76 views
Ibatis read Map in Pojo
Edit: Easy sayed, i want to group dynamic columns into a map in a pojo.
i want to use ibatis to read a list of pojos but the pojo contains a map wich i have to read:
public class ...
4
votes
1answer
114 views
Can I keep iBatis and Mybatis in the same application while switching to myBatis?
The question is the one of the title. There follows a brief explanation.
I have an application which uses iBatis 2 and I would like to migrate to the latest version of myBatis (3.2.0 at the momento ...
0
votes
0answers
88 views
PL/SQL package and ibatis
I’m working with ibatis and I would like to execute a PL/SQL package. Under this package I have more than 4000 lines of codes and I can't run it in one procedure.
Is it possible to execute PL/SQL ...
0
votes
0answers
36 views
Connecting with database(PostgreSQL) is not working properly
we are using ibatis and postgres in ibtis some code for getnext key.
when ever we are starting the programe it's working well but like after 4-5 time getting next key we are not getting response from ...
0
votes
0answers
121 views
Use of parameterClass in ibatis queries
I was always wondering what is the use of parameterClass in ibatis queries.
From whatever I understand ibatis uses reflection to fetch values out of the objects that are passed as parameters. So, ...
0
votes
2answers
238 views
SQL Server : set a default value for Insert Into query when parameter is null
I'm trying to do an insert query like follow:
Insert Into table1 (column1, column2)
Values (#value1#, #value2#)
But let's say, I want to default column2 to 2/19/2013 when the parameter #value2# is ...
0
votes
1answer
268 views
How do I insert a java List<String> using Mybatis?
I would like to insert a list of strings into a single column in my database using Mybatis. I've tried using a Custom TypeHandler but I can't even get Mybatis to invoke it.
For a more detailed ...
1
vote
0answers
171 views
Pagination with Apache iBatis SqlMaps queryForList
This nice article about pagination with Apache iBatis SqlMaps states that iBatis does physical pagination using database cursor if available using ResultSet.absolute(position) if we call the ...
0
votes
1answer
110 views
Inserting the data through iBATIS into PostgreSQL database is not working
Inserting data into PostgreSQL database with iBATIS is not working and not giving any exception. Please help me to get out of this.
This code is working some time but not every time. And code is ...
0
votes
1answer
205 views
How to convert json to java object during camel routing
I am using camel and sending json string via activemq and want to persist the received object in database using ibatis. I would like to know how to convert json to java object during camel route.
...
0
votes
1answer
125 views
JDBC + MySQL: Retry transaction in case of lockwait or deadlock
I want any transaction that failed with "deadlock" or "lock wait timeout" to be retried 3 times.
I use SpringTransactionManager -> iBatis -> JDBC -> MySQL.
1) Can't I configure JDBC or MySQL ir ...
0
votes
1answer
95 views
Using Oracle Coherence as second level cache for IBatis in Grails app
In a Grails app that's using IBatis for ORM (rather than GORM/Hibernate), is it possible to specify Oracle Coherence as a second level cache for IBatis? If so, how?
0
votes
1answer
50 views
How to subscribe to a topic using Camel
I would like to subscribe to activemq topic using camel. Can anyone share the route configuration or example for doing the same.
My requirement is whenever a new data is published on the topic I want ...
0
votes
2answers
148 views
How to use NOT IN (or IN) in Ibatis/MyBatis without iterate?
I've something like this:
<select id="group" parameterClass="HashMap" resultMap="group">
SELECT *
FROM GROUP
WHERE ID_USER_GROUP NOT IN (
SELECT ...
0
votes
1answer
210 views
iBATIS - auto generated keys exception
I am using IBATIS 2.3.4 version.
Database is MS SQL Server.
I am trying to insert record in table T_PROFILE, which has Identity primary column auto generated value.
My IBATIS configuration is
...
0
votes
0answers
172 views
How do configure the dao files to handle inserting a List<String> in MyBatis
I have an object that has a variable that's a List like so:
ExportQueue.java
public class ExportQueue implements Serializable {
private List<String> errors;
public List<String> ...
2
votes
1answer
136 views
Nested ResultMaps with ambiguous database columns
I have a couple of nested ResultMaps in iBatis that have exactly same database column names. This is causing ambiguity and resulting in incorrect result being retrieved for the different database ...
5
votes
2answers
1k views
APPARENT DEADLOCK Creating emergency threads for unassigned pending tasks
I am using mysql with mybatis and I am greeting this error on our live server
com.mchange.v2.async.ThreadPoolAsynchronousRunner$DeadlockDetector@6538f8f2
-- APPARENT DEADLOCK!!! Creating emergency ...
0
votes
1answer
446 views
ibatis select within insert statement
I have an select query which sets parameters to a insert query.
DB used:DB2
insert into table_name
(col1,col2,col3,col4)
(select col1,col2,col3,col4 from table_name_2)
the above statement fails in ...
1
vote
1answer
81 views
Is it possible to abort a long running query using iBATIS?
I have a GUI which allows users to run long running queries. Sometimes, the users regret running the queries and would like to cancel them. The queries are running using iBATIS against an Oracle ...
1
vote
0answers
122 views
ibatis and delimiter in mysql functions
I tried to use the following example from Big DBA Head in a ibatis migration script.
delimiter //
drop function if exists true_function //
create function true_function(p_param int) returns int
...
0
votes
1answer
472 views
ibatis spring java.lang.NoSuchMethodError com.ibatis.sqlmap.engine.builder.xml.SqlMapConfigParser.parse
i am using spring 3.2.0 with ibatis 2.3.4 in weblogic 10.3.6
while deploying in weblogic.
I am getting this NoSuchMethodError as below:
User defined listener ...
0
votes
1answer
114 views
is it possible to pass an Array from java(ibatis) to postgressql function as parameter
i want pass bunch of Update queries in the form of array to pl/pgsql function as parameter and there i need to execute those sql update queries. is it possible.please help me to get out of this.
0
votes
0answers
93 views
MyBatis Properties settings not working correctly
I've been learning how to use MyBatis.Net for a few weeks now. I do not want to store the user name and password information in the SqlMap.config file so I've been trying to set properties so I could ...


