[Bug 31770] New: Database FindFirst fails to find the correct record

wine-bugs at winehq.org wine-bugs at winehq.org
Sun Sep 23 19:16:24 CDT 2012


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 at winehq.org
        ReportedBy: leslie_alistair at 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.

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list