Search found 725 matches

by Paul
Fri 05 Nov 2004 14:20
Forum: dbExpress driver for Oracle
Topic: Possible bug?
Replies: 1
Views: 5231

1. Update SQL is generated by SQLExpress (See TSQLResolver.GenUpdateSQL). Please
specify what type of fields you have and what SQL is generated. I suppose we can find
a decision for your particular problem. Please compare results with standard Oracle
dbExpress driver.

2. You must pass table name without indicating schema to GetFieldNames. By default,
schema name coincides with user name. You can change schema name using
SQLConnection1.MetaData property.

Code: Select all

var
  L: TStringList;
begin
  L:=TStringList.Create;
  try
    SQLConnection1.Open;
    SQLConnection1.MetaData.SetOption(eMetaSchemaName, LongInt(PChar('SYS')));
    SQLConnection1.GetFieldNames('NLS_DATABASE_PARAMETERS', L);
  finally
    L.Free;
  end; 
by Paul
Wed 03 Nov 2004 09:27
Forum: Oracle Data Access Components
Topic: DataSet editing in ODAC 5.1 (C++Builder 6.0) problem !!!
Replies: 2
Views: 6020

DataSet editing in ODAC 5.1 (C++Builder 6.0) problem !!!

TOraQuery cannot update records without using SQLUpdate. Please use TSmartQuery for this purpose. Please see "Working with TSmartQuery component" topic in ODAC help.
by Paul
Tue 02 Nov 2004 10:00
Forum: VirtualDAC
Topic: Welcome
Replies: 0
Views: 5102

Welcome

Dear users,

Welcome to VirtualTable discussion forum.
Please use this resource to post your questions, pertinent issues, suggestions, and ideas for VirtualTable improvement.
Our team appreciates all of your work with the product.

Thanks.
by Paul
Tue 02 Nov 2004 09:57
Forum: Oracle Data Access Components
Topic: Welcome
Replies: 0
Views: 4290

Welcome

Dear users,

Welcome to ODAC discussion forum.
Please use this resource to post your questions, pertinent issues, suggestions, and ideas for ODAC improvement.
ODAC team appreciates all of your work with our product.

Thanks.
by Paul
Mon 01 Nov 2004 15:39
Forum: dbExpress driver for Oracle
Topic: Welcome
Replies: 2
Views: 5816

Welcome

Dear users,

Welcome to dbExpress driver for Oracle discussion forum.
Please use this resource to post your questions, pertinent issues, suggestions, and ideas for DbxOda driver improvement.
Our team appreciates all of your work with the product.

Thanks.