Thank's very much for hints.
shamim wrote:
>
> Hi All,
> i have stuck with dynamic Sql on Ibatis 3 annotations. Trying to pass
> List in dynamic sql as follows:
>
> @Update("update ${schemaName}.fuf uf" +
>
Param("schemaName") final String
schemaName,
@Param("list") List list, @Param("reestNum") final String reestNum,
@Param("reestDate") final Date reestDate);
Its always throws JDBC exception. May be i am missing something?
Thank'x in Advance
Shamim
--
public class TestConfig {
public static void main(String[] args) {
SqlSession session = null;
try {
// derby datasource setting
EmbeddedDataSource ds = new EmbeddedDataSource();
ds.setDatabaseName("d:/DerbyDB");
ds.setUser("");
you should try p6spy.
kiran vuppla wrote:
>
> Hi,
>
> I am using sql-maps and IBatis to do database related stuff. In my
> sql-maps most of them have ${} and #[]# for dynamic parameters created at
> run-time. I can only see the generated sql when I run my application. I
> would like to run th