ibatis create table

We create tables with iBatis <statement> tag and it works perfectly

I.e.:
<statement id="createTableFoo ">
        CREATE TABLE [dbo].[FooTable]
        .....
</statement>

Remember that if the table name contains # character, you have to escape it,
otherwhise iBatis will treat it like a field placeholder.

你可能感兴趣的:(ibatis)