Search found 2845 matches

by Plash
Mon 08 Feb 2010 09:29
Forum: dbExpress driver for InterBase & Firebird
Topic: Windows 7 64bit and DbxIda 2.50.20 - [DCC Fatal Error]
Replies: 10
Views: 7986

What error do you have when opening tables?
by Plash
Mon 08 Feb 2010 09:06
Forum: dbExpress driver for InterBase & Firebird
Topic: TLargeintField not being used
Replies: 15
Views: 6120

We'll add the support for ftLargeInt parameters in the next build.
by Plash
Mon 08 Feb 2010 08:38
Forum: VirtualDAC
Topic: Delete Field Bug
Replies: 4
Views: 3926

You can use the following code:

Code: Select all

  VirtualTable1.Close;
  VirtualTable1.DeleteField('aktywne');
  VirtualTable1aktywne.DataSet := nil;
  VirtualTable1.Open;
by Plash
Mon 08 Feb 2010 08:23
Forum: Universal Data Access Components
Topic: execute SQL is not accurately sometimes when Set TUniConnect
Replies: 3
Views: 2134

We have fixed this problem. The fix will be included in the next build of UniDAC.
by Plash
Fri 05 Feb 2010 13:16
Forum: VirtualDAC
Topic: Refresh clears data
Replies: 1
Views: 3523

We have fixed this problem. The fix will be included in the next build of VirtualTable.
by Plash
Fri 05 Feb 2010 13:01
Forum: InterBase Data Access Components
Topic: Getting generated value
Replies: 2
Views: 1470

With Firebird 1.0 you can call the Refresh method to refresh the full dataset or use the KeyGenerator property.
by Plash
Fri 05 Feb 2010 12:47
Forum: Universal Data Access Components
Topic: AccessProvider: how to use Access system database (mdw)
Replies: 3
Views: 1727

Access provider does not support the system database.

We'll add the SystemDatabase specific option in the next UniDAC build.
by Plash
Fri 05 Feb 2010 12:11
Forum: InterBase Data Access Components
Topic: TIBCBackupService : how to use it
Replies: 14
Views: 4316

We have fixed this problem. The fix will be included in the next build of IBDAC.
by Plash
Fri 05 Feb 2010 09:59
Forum: Oracle Data Access Components
Topic: problem with objects and unicode.
Replies: 3
Views: 2442

This is a bug of the OCI Unicode environment. When it is enabled, size constraints for string fields in objects are divided by 2. So you cannot enter more than 5 characters into the AM_OR_PM field. Because field type is NCHAR, the field values are fetched with trailing blanks and have 10 characters.
The user can change the field type to NVARCHAR to avoid the problem.
by Plash
Thu 28 Jan 2010 14:03
Forum: InterBase Data Access Components
Topic: SET TERM doesn't work as expected?
Replies: 5
Views: 2047

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
Thu 28 Jan 2010 13:59
Forum: InterBase Data Access Components
Topic: Modifying user via Services API without modifying a password
Replies: 5
Views: 1593

The same way can be used with IBDAC.

If you does not assign a value to a property, it stays unmodified.
by Plash
Thu 28 Jan 2010 13:50
Forum: Oracle Data Access Components
Topic: DBMonitor CallStack
Replies: 12
Views: 2573

You can pass the parameter values in the method names. But dbMonitor does not support this. You will see correct call stack for each event. But Call Tree will not be correct.
by Plash
Thu 28 Jan 2010 13:42
Forum: Oracle Data Access Components
Topic: ODAC error message TCompressedBlob.Free
Replies: 1
Views: 1439

This error occurs if a TOraLob object is freed several times. If you work with TOraLob objects in your application, you should not call the Free method for objects that you take from parameters or fields.
by Plash
Thu 28 Jan 2010 13:31
Forum: Oracle Data Access Components
Topic: Savepoint problem
Replies: 5
Views: 1637

We have fixed this problem. The fix will be included in the next build of ODAC.
by Plash
Thu 28 Jan 2010 13:20
Forum: Universal Data Access Components
Topic: SQLite and FetchAll = False
Replies: 5
Views: 2074

The next block of records is fetched automatically when you move to a record that was not fetched yet.