agentgt / jirm

A Java Immutable object Relational Mapper focused on simplicity, convenience, and thread safety.
Apache License 2.0
66 stars 10 forks source link

SQL Placeholder parser should not replace operator and left hand symbol if there is no space. #21

Open agentgt opened 11 years ago

agentgt commented 11 years ago
UPDATE xml_linkedin_profile
   SET 
   person_xml= XML('<person><id>TEST</id></person>' -- {personXml}
   )
   , update_time=now() -- {updateTime}
 WHERE
 id='TEST' -- {id}

Will turn into (notice TEST at bottom):

UPDATE xml_linkedin_profile
   SET 
   person_xml= XML(?
   )
   , update_time=?
 WHERE
 ?