A weblog about programming in Python, C#, Java, Perl and C++ - and the occasional comment on PyCS development
new: discuss community servers on the CommunityServerWiki!
me
the locals
offsite
also available in XML
Copyright (c) 2002 Phillip Pearson
|
2002-7-18Is this a bug in ADO.NET?Does anyone know if Microsoft has a public bug database somewhere? I think I've finally figured out what provoke these annoying blank OLEDB error messages that have been keeping me from doing anything useful in C# for the last few weeks and it would be nice to know whether I'm doing something wrong or this is a bug. The following code will throw an OleDbException with a blank Message field and an InnerException of "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.":
This is using the Jet 4.0 driver to insert data into an Access (MDB) database. memoField is a field of Access type Memo - a long varchar field. It's set as:
(with blank values for 'Format', 'Caption', 'Default Value', 'Validation Rule' and 'Validation Text'). Can anyone help me out here? Comment on this post [ so far] |