
Odd ADO problem! Please help!
I always seem to get some odd error messages ...
DB/App config: delphi 5 (with last ADO upgrade)/ADO/Access 2000
I'm doing an SaveToFile export into XML files from Access 2000 database.
When I execute this block:
with qryTemp do begin
Close; SQL.Clear;
SQL.Add('SELECT * FROM '+TableName);
Open;
SaveToFile(IncludeTrailingBackslash(ExportDir)+TableName+'.xml',
pfXML);
Close;
end;
This raises an EOLEException exception for only one table(!):
"Multiple-step operation generated errors. Check each status value"
and I simply can not find out why :(
Table on which I have problems has an AutoNumber field, one integer field
and one date/time field (those are the keys),
one text (50 chars) field and about 30 double fields.
I use this code in a for-loop where I export more tables and only one table
raises this exception.
It is also raised when I try to export only that problematic table.
Any ideas? Thanks in advace!
--
{[nikica]coding*4[$||:)]}