http://bugs.winehq.org/show_bug.cgi?id=31770
Bug #: 31770 Summary: Database FindFirst fails to find the correct record Product: Wine Version: 1.5.13 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: oleaut32 AssignedTo: wine-bugs@winehq.org ReportedBy: leslie_alistair@hotmail.com Classification: Unclassified
Created attachment 41802 --> http://bugs.winehq.org/attachment.cgi?id=41802 Sample Program
On a database server create a new database Add the following table
CREATE TABLE testing ( id serial NOT NULL, name boolean, id2 integer, CONSTRAINT testing_pkey PRIMARY KEY (id) );
INSERT INTO testing(id, name, id2) VALUES (1, false, 2); INSERT INTO testing(id, name, id2) VALUES (2, false, 3);
winetricks mdac28 Install the mysql or postgres odbc driver
Using odbcad32, create a connecting to the server.
Run DBSample, select the ODBC connection you just made. You'll get a dialog with "Yipee" if it was successful.