Recent content by ThomasW69

  1. T

    Problem with Directpathloader

    I solved the probem by replacing TDateValue= record dt: TDatetime; dts:string; value: double; end; with TDateValue= record dt: TDatetime; dts: ansistring; //<-!! value: double; end; Since Delphi 2009 unicode strings are supported so that...
  2. T

    Problem with Directpathloader

    It is Delphi 2009 Enterprise. Type TDateValue= record dt: TDatetime; dts:string; value: double; end; var resarray:Array of TDateValue; The "dts" was inserted into TDatevalue for the loader to handle the datetime "dt" field VTIME in the table as string. So the...
  3. T

    Problem with Directpathloader

    And this is the tabe to be filled with data. create table HD_TIMESERIES_VALUES ( TS_ID NUMBER(20) not null, VTIME DATE not null, VALUE NUMBER(10,3) default 0 not null, STATUS1 VARCHAR2(1), STATUS2 VARCHAR2(1), VDATUM DATE, constraint PK_TIMESERIES_VAL primary key (TS_ID...
  4. T

    Problem with Directpathloader

    I have a problem with DirectPathloader when executing following code I will get a ORA-01841 (year < -4713 or zero or >+9999) Row =0, Column = 1 error in the sourcecode line of 'Ldr.Load(Row);' /Fill the array for i := 0 to .... do begin...
  5. T

    Serious Problem when Closing Dataset!!

    Hi @All I Ise Delphi 2009 and DOA 4.1.1.0. I have a serious problem Closing a Toracledataset. I can close it once! After reopen and then try to close it a 'invalid pointer' Error will occur. This is the Error from Delphi [1C60A5CD]{doa41d2009.bpl} Oracledata.TOracleDataSet.FreeRowId + D...
Back
Top