Search found 2845 matches

by Plash
Thu 28 Jan 2010 12:09
Forum: InterBase Data Access Components
Topic: SET TERM doesn't work as expected?
Replies: 5
Views: 2056

You should use TIBCScript if you execute a script with several commands.
by Plash
Thu 28 Jan 2010 09:47
Forum: Oracle Data Access Components
Topic: Compatibility Odac 6.90.0.55 and Unidac 3.00.0.5
Replies: 4
Views: 1779

It is already released.
by Plash
Thu 28 Jan 2010 08:48
Forum: Oracle Data Access Components
Topic: existing project and unicode
Replies: 9
Views: 2348

Please recreate fields for this query.
by Plash
Thu 28 Jan 2010 08:18
Forum: Oracle Data Access Components
Topic: Compatibility Odac 6.90.0.55 and Unidac 3.00.0.5
Replies: 4
Views: 1779

ODAC 6.90.0.55 is compatible with UniDAC 3.00.0.6.
by Plash
Wed 27 Jan 2010 13:55
Forum: InterBase Data Access Components
Topic: Query with Deferred Blob Read doesn't read whole BLOB
Replies: 6
Views: 2230

We are planning to release the new build today.
by Plash
Wed 27 Jan 2010 09:56
Forum: PostgreSQL Data Access Components
Topic: SQL Editor Modeless
Replies: 5
Views: 2932

We will investigate the possibility to add such feature, but that is hardly to happen in the nearest future.

Note that you can edit SQL in Code Editor. Right click the memo where you edit SQL and select Code Editor from the context menu.
by Plash
Wed 27 Jan 2010 09:51
Forum: Oracle Data Access Components
Topic: strange odac behaviour in TOraQuery -ODAC 6.90.0.54 bcb 2009
Replies: 3
Views: 1670

We could not reproduce the problem. Please send to support*devart*com a complete small sample that demonstrates the problem, including the script for creating database objects.
by Plash
Wed 27 Jan 2010 09:50
Forum: InterBase Data Access Components
Topic: Query with Deferred Blob Read doesn't read whole BLOB
Replies: 6
Views: 2230

We have fixed this problem. The fix will be included in the next build of IBDAC.
by Plash
Wed 27 Jan 2010 09:08
Forum: Universal Data Access Components
Topic: Setting empty string to null automatically
Replies: 4
Views: 2031

Please find the following line in SQLServerUniProvider.pas:

Code: Select all

    TOLEDBREcordSet(Obj).SetProp(prEnableEmptyStrings, True);
and replace True with False.
by Plash
Wed 27 Jan 2010 08:57
Forum: Oracle Data Access Components
Topic: OraSqlMonitor Traceflag
Replies: 2
Views: 1409

There is no such trace flag.
by Plash
Wed 27 Jan 2010 08:54
Forum: Universal Data Access Components
Topic: Audit log with Unidac
Replies: 1
Views: 1542

You can use the BeforePost event of TUniQuery. In this event you can store old and new values of the fields in the log.
by Plash
Wed 27 Jan 2010 08:45
Forum: Oracle Data Access Components
Topic: SQL strings with Unicode and Direct=True
Replies: 10
Views: 2044

Yes, you cannot use Unicode characters in SQL if the database character set is not UTF-8.

You can use ftWideString parameters. Set the National property of the parameter to True.

We are planning to release the new build today.
by Plash
Tue 26 Jan 2010 08:46
Forum: Oracle Data Access Components
Topic: DBMonitor CallStack
Replies: 12
Views: 2578

Method name should be the same for each call. Otherwise dbMonitor duplicates methods in Call Tree.

Normally you pass the parameter data types but not values:

Code: Select all

'TClass1.Method1 (p1 : string, p2 : integer)'
by Plash
Tue 26 Jan 2010 08:45
Forum: Universal Data Access Components
Topic: SQL Error
Replies: 1
Views: 1370

No exception is raised when you assign SQL text. Exception can be raised when you call Prepare, Execute, or Open.

Code: Select all

try
  UniQuery.Open;
except
  on E: EUniError do
    ShowMessage(E.Message);
end;
by Plash
Tue 26 Jan 2010 08:44
Forum: InterBase Data Access Components
Topic: UseUnicode always creates ftWideString fields?
Replies: 7
Views: 1995

This is the sense of the UseUnicode option that Unicode character set is used for the connection. You can connect to a database with any character set when the UNICODE_FSS character set is used for the connection.

Encoding of TStringField depends on Windows regional settings. So there is no sense in using TStringField for any specific InterBase character set. TWideStringField can be used for Unicode and any national character set.