Re: multiple table mapping scenario.

2009-06-12 Thread Steven A
Axel, That solves my problem. Sorry I wasn't able to find that in the documentation. My testcase now passes! Thanks. On Fri, Jun 12, 2009 at 1:11 AM, Leucht, Axel wrote: > I don't fully understand you're problem but to get rid off the '' around > the string you should give > > select * from

AW: multiple table mapping scenario.

2009-06-12 Thread Leucht, Axel
I don't fully understand you're problem but to get rid off the '' around the string you should give select * from zomg_$tableName$ a try.

multiple table mapping scenario.

2009-06-12 Thread Steven A
Hello all, new to iBatis, here goes. I have a table structure like this: create table zomg_zh ( id int(10) not null, name varchar(64) null, age int(10) null, primary key(id), unique(id) ) create table zomg_er ( id int(10) not null, name varcha