Hello,
I am working on a solution which have its data on dbf tables.
There is a table with a colum of boolean type. Servoy recognized this colum as integer not as boolean.
When i perform a search by this column:
var query = “select * from granexam where es_histori = ?”
var args = new Array()
args[0]= ‘true’
var dataset = databaseManager.getDataSetByQuery(“pruebadbf”,query,args,100)
foundset.loadRecords(dataset)
the data i obtain is not correct. They are all true, but there are others true and they did not appear in the foundset.
thanks in advantage for your help!