Board index » delphi » Delphi 5 and exporting Memo fields from Oracle to DBase
Phyllis Helton
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Delphi 5 and exporting Memo fields from Oracle to DBase
Before we upgraded to Delphi 5, we were able to run a procedure using Delphi
that would take a SQL query containing varchar2(2000) length fields and dump them into a DBase table with no problem. Now that we are using Delphi 5, the table has a field for the memo, but it simply says [Memo]. Any ideas what might have changed, and how we can fix this? This is what the procedure does: the component qryPrayer is a TQuery, pulling data from an Oracle 7.3 procedure TfrmCallExport.ExportBtnClick(Sender: TObject); ExportDataSet(qryExec, ExtractFilePath(Application.ExeName) + PrayerExport.tablename := ExtractFilePath(Application.ExeName) + ShowMessage('Export file completed'); |