Recent content by sblackmore

  1. S

    ORA-01722 error while trying to use TOracleDirectPathLoader

    Thanks that works a treat ! Steve
  2. S

    ORA-01722 error while trying to use TOracleDirectPathLoader

    Here are the relevant declarations plus the procedure that prepares the loader (in case you need it). Steve ============================================== Type DataRecType = record fldName :string; dataType :string ; value :string ; // Used by single record insert mode varArray...
  3. S

    ORA-01722 error while trying to use TOracleDirectPathLoader

    Here is the relevant procedure :- procedure TMainForm.loadDataBlock (); Var R,F :Integer; lsName,lsTemp :string; lpDataVal ointer; Begin // loaders columns collection starts at zero // gDirLoadBuf starts at one // first "point" the data loader columns to the memory array For R := 0...
  4. S

    ORA-01722 error while trying to use TOracleDirectPathLoader

    I am attempting to use your direct path loader to load a numeric value into a number column. I am loading data from an ASCII file into a string array, defining the loader columns ( all with dataType := dpString) , preparing the loader, performing all the "setDatas" (pointing the data to the...
Back
Top