You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ibatis.apache.org by "Jeff Butler (JIRA)" <ib...@incubator.apache.org> on 2009/02/04 23:17:59 UTC

[jira] Closed: (IBATIS-579) Ibator generates invalid sql select statement for columns with spaces in name

     [ https://issues.apache.org/jira/browse/IBATIS-579?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jeff Butler closed IBATIS-579.
------------------------------

    Resolution: Fixed

Fixed in SVN.

Good catch - thanks!


> Ibator generates invalid sql select statement for columns with spaces in name
> -----------------------------------------------------------------------------
>
>                 Key: IBATIS-579
>                 URL: https://issues.apache.org/jira/browse/IBATIS-579
>             Project: iBatis for Java
>          Issue Type: Bug
>          Components: Tools
>    Affects Versions: 2.3.3
>         Environment: Used with Microsoft SQL Server 2008
>            Reporter: Cimballi
>            Assignee: Jeff Butler
>
> When you tell Ibator to generate the SqlMap file for a table with several columns and one of them with spaces in the name, you can have a problem (not always) because Ibator trunks the lines. So, if it trunks in the middle of the column name, it will generates an error at the execution.
> Example :
>   <select id="ibatorgenerated_selectByExample" resultMap="ibatorgenerated_BaseResultMap" parameterClass="xxxxx" >
>     <!--
>       WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
>       This element was generated on Tue Feb 03 19:19:42 GMT-05:00 2009.
>     -->
>     select RowSort, xxxxx, xxxxx, xxxxx, xxxxx, xxxxx, "xxxxx xxxxx", "xxxxx
>       xxxxx", xxxxx
>     from xxxxx
> I replaced the real names with xxxxx, but you can see that the column name is not on one line, and at the generation, instead of having 1 space in the middle, it will have 5 or more spaces.
> You should add a constraint that write the name of a column on one line only, said differently, you should not break the line between 2 "".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.