Mock JNDI sounds useful as it would prevent separate configs for web-app
and the console-app.
Can you give any pointers for doing this? I'm not very familiar with JNDI
Kai
Larry Meadors wrote:
You could also do a very simple mock JNDI implementation - it's less
than 100 lines of code.
That way you could use the same sqlmapconfig.xml in both places.
Larry
On Fri, Jan 30, 2009 at 7:24 AM, Nathan Maves <nathan.ma...@gmail.com> wrote:
There is nothing in the IB library that is tied to a servlet container.
You can use any of the various datasources from IB. c3p0 is just another DB
connection pool so use it just as you would dbcp or the built in SIMPLE db
connection pool.
Nathan
On Fri, Jan 30, 2009 at 5:14 AM, charlie bird <zebthe...@yahoo.co.uk> wrote:
I've got similar question
Has anyone done this sort of thing with c3p0?
Can I use the same datasource xml that would be used for servlet container
config?
Thanks
Charlie
--- On Fri, 30/1/09, Jan Kriesten <kries...@mail.footprint.de> wrote:
From: Jan Kriesten <kries...@mail.footprint.de>
Subject: Re: Using iBatis outside servlet container
To: user-java@ibatis.apache.org
Date: Friday, 30 January, 2009, 9:43 AM
Hi,
What do I have to do in order to provide a data source
to iBatis?
use
<transactionManager type="JDBC">
<dataSource type="SIMPLE">
<property name="JDBC.Driver"
value="..."/>
...
</dataSource>
</transactionManager>
in your sqlMapConfig. You're not bound to JNDI with
iBATIS.
Best regards, --- Jan.