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...
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...
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...