This component provides a system for automatically storing modified 4D methods. Every change of a method, whether a project, object, form or database method, is automatically stored in a table, either of the local database or a 4D Server.
Download Complete Tech Note and Example: Windows | Mac
In this situation, the best thing to do is contact the Tech Support team who will be happy to investigate the issue. They will address any bugs that they find along the way.
Kind Regards,
Chris Visaya
The following two code snippets now produce different results:
SELECT id FROM SomeTable
WHERE id=1 AND name="joe"
INTO :array_of_ids
Fills the array with IDs from every row of SomeTable (i.e. WHERE clause is ignored). In this case:
SELECT id FROM SomeTable
WHERE id=1
AND name="joe"
INTO :array_of_ids
fills the array with just one element, as expected.
So whitespace matters in the WHERE clause?