On Sunday 04 June 2006 09:08, EA Durbin wrote:
I wrote a quick test in wine/dlls/msi/tests/db.c to add a 2nd row to the
Could you share it?
database that was being created, then I inserted the `id` of 8 into it and then I ran the query SELECT * FROM phone where `id` > 6, and it returned the correct results with `id` of 8. But in the actual wine installer code a
Is the table in db.c comparable? Does it have the same fields and types? Also, you're using > in your select but the failing select statement has >= which may make a difference.
-Hans