TUniLoader problem with Oracle in Direct mode

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
joongtang
Posts: 16
Joined: Wed 07 Dec 2016 04:46

TUniLoader problem with Oracle in Direct mode

Post by joongtang » 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.

Code: Select all

procedure TDALoader.Load;
begin
  BeginConnection;
  try
    if Columns.Count = 0 then
      CreateColumns
    else
      WriteColumns; <- Errror occur!!
    try
In TNS mode It's works, but I problem with Oracle in Direct Mode.

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
)
Please try to test.

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: TUniLoader problem with Oracle in Direct mode

Post by MaximG » Wed 24 May 2017 13:39

Please compose a small sample in which you fill the UNIDAC_LOADED table in OCI Mode ( when this operation is successfully executed.) We will investigate this sample in the Direct Mode. You can send us this information using the e-support form ( https://www.devart.com - menu «Support»\«Request Support» )

Post Reply