This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author markm
Recipients Robin.Jarry, loewis, markm, markmcmahon, tim.golden
Date 2011-06-25.08:10:01
SpamBayes Score 0.015877055
Marked as misclassified No
Message-id <1308989401.91.0.0653120602535.issue12382@psf.upfronthosting.co.za>
In-reply-to
Content
The following two error conditions that can be returned by MsiOpenDatabase do not have specific handling:

ERROR_CREATE_FAILED (1631)
    The database could not be created.

ERROR_OPEN_FAILED (110)
    The database could not be opened as requested.

(the messages are those copied from MSDN).

Should extra cases for these go into the case statement in msierror? or should they be handled directly in OpenDatabase.

Does the error text above sound OK - should we add ": '%s'" % msi_file ?
History
Date User Action Args
2011-06-25 08:10:02markmsetrecipients: + markm, loewis, markmcmahon, tim.golden, Robin.Jarry
2011-06-25 08:10:01markmsetmessageid: <1308989401.91.0.0653120602535.issue12382@psf.upfronthosting.co.za>
2011-06-25 08:10:01markmlinkissue12382 messages
2011-06-25 08:10:01markmcreate