nicho92 / MtgDesktopCompanion

Cards manager for magic the gathering
Apache License 2.0
163 stars 35 forks source link

HSQL dao error with deck stock comparator #156

Closed nicho92 closed 3 years ago

nicho92 commented 3 years ago

DAO : Hsql2

2021-01-21 23:37:13 TRACE org.magic.api.dao.impl.HsqlDAO2 594 - sql=select * from stocks where collection=? and mcard like '{"name":"Waveskimmer Aven"%' 2021-01-21 23:37:13 ERROR org.magic.gui.components.DeckStockComparatorPanel 184 - Error SQL java.sql.SQLException: Invalid argument in JDBC call: parameter index out of range: 2

@Override public String createListStockSQL(MagicCard mc) { return "select * from stocks where collection=? and mcard like '{\"name\":\""+mc.getName().replace("'", "\\'")+"\"%'"; }