Tagged Questions

0
votes
2answers
16 views

How to map a stored package function in iBatis?

I am presently using <parameterMap class="map" id="param1"> <parameter property="result" jdbcType="BOOLEAN" javaType="boolean" mode="OUT"/> <parameter property="arg1" …
0
votes
2answers
37 views

Howto return ids on Inserts with Ibatis ( with RETURNING keyword )

I'm using iBatis/Java and Postgres 8.3. When I do an insert in ibatis i need the id returned. I use the following table for describing my question: CREATE TABLE sometable ( id serial NOT NULL, …
1
vote
2answers
31 views

Concurrency issues when retriveing Ids of newly inserted rows with ibatis

I'm using iBatis/Java and Postgres 8.3. When I do an insert in ibatis i need the id returned. I use the following table for describing my question: CREATE TABLE sometable ( id serial NOT NULL, …
1
vote
5answers
110 views

Supporting both Oracle and MySQL: how similar is their SQL syntax?

We use Oracle on a project and would like to also support MySQL. How close are their SQL dialects? Is it perhaps even possible to use the same SQL source for both without too many gymnastics? …
0
votes
2answers
28 views

Maintaining / Auto-generating IBatis SQL Maps?

Hello, I just started a new job and inherited the project from hell. Hell = {2 years over schedule, overly complex, uses both oracle and sql server} There are 100+ stored procedures in the Oracle …
1
vote
3answers
97 views

Hibernate or iBatis or something else?

In my project i need to switch between databases during runtime. I tried to use Hibernate, but stuck in a place, where i need to map object with table in database. The problem is, that i have several …
1
vote
1answer
57 views

Hibernate vs Ibatis caching

Hi, We can speed up a hibernate app easyly with 2nd level cache using infinispan or ehcache/terracotta,... but ibatis only have a simple interface to implement for caching. And hibernate knows more …
0
votes
2answers
189 views

What’s the right way to handle UTC date-times using Java, iBatis, and Oracle?

I'm coming up against an unexpected daylight savings time problem in code I thought was purely UTC. I'm using Java 1.6, the iBatis SQL mapper (2.3.3), and Oracle XE (an eval version of Oracle 10.2) …
0
votes
4answers
94 views

instantiating spring bean outside the container (for testing)

I have following in my applicaionContext.xml <bean id="IbatisDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" …
0
votes
1answer
144 views

how to integration test a DAO built with spring + iBatis

I asked a question, title of which might have been misleading so I'm going to try to ask the question again with much detailed stuff. (i know question seems long but please bear with me) What I'm …
0
votes
2answers
65 views

is this possible to do with iBatis + spring

usual idiom of using ibatis with spring support is following. Or this is how I'm doing it. please let me know if it can be done a better way? beans xml: <bean id="DataSource" …
0
votes
1answer
34 views

com iplanet ias JAR

I've been struggling with this for past couple of days. I am trying to test a DAO outside the container but while running the test case I am getting the error: Error creating bean with name …
0
votes
1answer
32 views

how to set SqlMapClient outside of spring xmls

I have the following in my xml configurations. I would like to convert these to my code because I am doing some unit/integration testing outside of the container. xmls: <bean id="MyMapClient" …
0
votes
2answers
76 views

Spring, iBatis, MySQL - how to manage transactions?

Hello I'm building a web application with spring ibatis and mysql. I'm going to use mysql stored procedures and I will call them with ibatis. My question is about how to manage the transactions. …
0
votes
1answer
131 views

iBatis mapping for oracle cursor

I have the following iBatis mapping for an Oracle Stored Procedure that returns a true/false value. <resultMap id="isAuthorizedResult" class="java.lang.Boolean"> <result …

1 2 3 4 5 next
15 30 50 per page