weblocks icon indicating copy to clipboard operation
weblocks copied to clipboard

clsql query does not work in some cases

Open html opened this issue 11 years ago • 0 comments

When searching character column with integer value it returns nil

For example, column contains "31159" value

(find-persistent-objects *default-store* 
                           'citilink-excel-data-item 
                           :where [= [article] "31159"])

returns nil and

(find-persistent-objects *default-store* 
                           'citilink-excel-data-item 
                           :where [= [article] 31159])

returns record

It seems that this is clsql issue

html avatar Apr 26 '13 12:04 html