yes it was edited for the email ... but even as typed into the post, it ran and had the same error as when i was using the full-blown select statement.
turns out that, in the <transactionManager> section of the ibatis config file, setting the JDBC.ConnectionURL to the full url of the database fixed the problem. Having been working w/Ibatis for this whole project and having mapped a lot of data to a lot of java beans with the abbreviated URL, i'm mystified as to why changing the db url would suddently allow it to map Clobs.... Larry Meadors-2 wrote: > > The exception tells you that: > --- The error occurred while applying a parameter map. > --- Check the Link.forVerbiage-InlineParameterMap. > > The statement you posted has no parameters...is that the actual > statement or has it been edited for the email? > > Larry > > > On 6/12/07, mister blinky <[EMAIL PROTECTED]> wrote: >> >> An additional note: >> >> The error happens *before* the resultmap gets applied. I know this >> because >> if i replace the resultMap with this: >> >> <resultMap id="verbiageTest" class="com.ibm.bl.Verbiage"> >> <result property="htmlVerbiage" column="NTHIN"/> >> </resultMap> >> >> where "NTHIN" is not a column in the resultset at all, the same error >> occurs. >> >> thanks >> -- >> View this message in context: >> http://www.nabble.com/ArrayIndexOutOfBoundsException-mapping-CLOB-tf3909489.html#a11085300 >> Sent from the iBATIS - User - Java mailing list archive at Nabble.com. >> >> > > -- View this message in context: http://www.nabble.com/ArrayIndexOutOfBoundsException-mapping-CLOB-tf3909489.html#a11086342 Sent from the iBATIS - User - Java mailing list archive at Nabble.com.
