mybatis-mapper icon indicating copy to clipboard operation
mybatis-mapper copied to clipboard

generate SQL statements from the MyBatis3 Mapper XML file in Node.js

Results 8 mybatis-mapper issues
Sort by recently updated
recently updated
newest added

return data is upper case, but is it possible in lower case?

Hi guys. I found a small bug while using your module. If a query include '!=' and invoke getStatement with Format paramet (language "sql") , it's transpiled to "! ="....

some tools generate mybatis template sql like this: So I need to add suffix and suffixOverrides in TRIM tag, I already changed code in my machine, and it run smoothly....

hi @OldBlackJoe https://github.com/OldBlackJoe/mybatis-mapper/blob/48942abe2dd0835d72aa6d3f329f743c71c7a178/lib/convert.js#L96-L99 ex) ```javascript tempParamKey = `인천광역시 서구 (가정동, 루원시티 SK Leaders' VIEW)` ``` result ```javascript '인천광역시 서구 (가정동, 루원시티 SK Leaders\'' VIEW)' ``` i want result ```javascript '인천광역시...

Hi, First of all, I appreciate for your library. It is really helpful for my project. I found an error while using your library on node.js + express + ubuntu(aws...

INSERT INTO fs (dasd,sad,dsa) VALUES (#{item.dasd},#{item.sad},#{item.dsa} ) error: Error occurred during convert element.

There is a problem with parameter matching with a special name and list. I wrote it to execute a multi-query. The same where statement was used twice. The condition has...