TUniLoader problem with Oracle in Direct mode
Posted: Mon 01 May 2017 02:54
Hello,
I use TUniLoader with table contains GEOMETRY column.
I don't load data to GEOMETRY column but I try to load then error occured.
In TNS mode It's works, but I problem with Oracle in Direct Mode.
Test scheme is like this.
Please try to test.
I use TUniLoader with table contains GEOMETRY column.
I don't load data to GEOMETRY column but I try to load then error occured.
Code: Select all
procedure TDALoader.Load;
begin
BeginConnection;
try
if Columns.Count = 0 then
CreateColumns
else
WriteColumns; <- Errror occur!!
try
Test scheme is like this.
Code: Select all
CREATE TABLE UNIDAC_LOADED (
INTG NUMBER(9, 0),
DBL FLOAT(126),
STR VARCHAR2(50 BYTE),
DAT DATE,
GEO GEOMETRY
)