Search found 22 matches

by adoniram
Mon 23 May 2011 17:03
Forum: Universal Data Access Components
Topic: Trying to build Unidac 3.70
Replies: 3
Views: 1809

I did what you said and worked.
But I need to add a LIBSUFFIX on my unidac projects.
With LIBSUFFIX the providers didn't appears on component pallete.

What would it be?
by adoniram
Sat 21 May 2011 21:58
Forum: Universal Data Access Components
Topic: Trying to build Unidac 3.70
Replies: 3
Views: 1809

Trying to build Unidac 3.70

I'm building unidac packages but when I install the packages, the provider components didn't appears on delphi 7 component pallete. The others components are there but the providers didn't. The provider's pallete is not created.

I'm building in following order, from command line:

Unidac\Source\Delphi7\oraprovider70.dpk
Unidac\Source\Delphi7\ibprovider70.dpk
Unidac\Source\Delphi7\myprovider70.dpk
Unidac\Source\Delphi7\msprovider70.dpk
Unidac\Source\Delphi7\pgprovider70.dpk
Unidac\Source\Delphi7\liteprovider70.dpk
Unidac\Source\Delphi7\odbcprovider70.dpk
Unidac\Source\Delphi7\accessprovider70.dpk
Unidac\Source\Delphi7\db2provider70.dpk
Unidac\Source\Delphi7\adsprovider70.dpk
Unidac\Source\Delphi7\dac70.dpk
Unidac\Source\Delphi7\dacvcl70.dpk
Unidac\Source\Delphi7\dcldac70.dpk
Unidac\Source\Delphi7\unidac70.dpk
Unidac\Source\Delphi7\unidacvcl70.dpk
Unidac\Source\Delphi7\dclunidac70.dpk

It's 3.70 version of Unidac.

Can you help me?
by adoniram
Mon 02 May 2011 19:04
Forum: Universal Data Access Components
Topic: comments and slow query
Replies: 1
Views: 1224

comments and slow query

I'm perform a query on a sql server table with more than 269,993 records.

In this query I use LIKE statements and it take only "00:00:00.086" (less than 1 second) to run.

If I add some comment before this, the time jumps to "00:00:08.639" (almost 10 seconds).

I use fetchAll = false. If it's true then works fine.

My current version of Unidac is 3.60.0.15.


Can You help me?
by adoniram
Tue 01 Mar 2011 18:07
Forum: Universal Data Access Components
Topic: LargeInt Fields
Replies: 7
Views: 2005

Ok,
Thanks!.
by adoniram
Fri 25 Feb 2011 17:40
Forum: Universal Data Access Components
Topic: LargeInt Fields
Replies: 7
Views: 2005

But before unidac update it works.
Why?
by adoniram
Thu 24 Feb 2011 16:50
Forum: Universal Data Access Components
Topic: LargeInt Fields
Replies: 7
Views: 2005

SQL Server.
by adoniram
Mon 21 Feb 2011 17:52
Forum: Universal Data Access Components
Topic: LargeInt Fields
Replies: 7
Views: 2005

LargeInt Fields

After update unidac to 3.60.0.15 version we cannot access LargeInt field with Value property. Instead we have to do AsInteger to work.

If we use Table.FieldByName('LargeIntField').Value it raises "Cannot access field 'LargeIntField' as type Variant" error.

On prior version (3.0.0.9) it's not happened.
by adoniram
Tue 13 Apr 2010 14:17
Forum: Universal Data Access Components
Topic: UniDac with NexusDB ODBC driver
Replies: 3
Views: 1563

Thanks,
When the version will be released?
by adoniram
Mon 12 Apr 2010 20:56
Forum: Universal Data Access Components
Topic: UniDac with NexusDB ODBC driver
Replies: 3
Views: 1563

UniDac with NexusDB ODBC driver

I try to connect a nexusdb table with unitable but when the table is opened, it's raising an error message "Option 5 not supported".
This error happens when i have string fields with size less than 32.

Example:

CREATE TABLE TEST (ID INTEGER) >>> raise an error
CREATE TABLE TEST_2(ID INTEGER, CODE VARCHAR(31)) >>> raise an error

CREATE TABLE TEST_3(ID INTEGER, CODE VARCHAR(32)) >>> works fine

If I try to open the same table with TTable or TADOTable it's works too.

Could you help me?
by adoniram
Mon 29 Mar 2010 12:22
Forum: Universal Data Access Components
Topic: AutoInc
Replies: 2
Views: 1646

I already find out how to do it.
Thanks!!!!!
by adoniram
Mon 29 Mar 2010 12:03
Forum: Universal Data Access Components
Topic: AutoInc
Replies: 2
Views: 1646

AutoInc

I have some tables with autoinc fields. When I open a table with autoinc field, the field is fetched as integer field.
How can I fetch de correct information about these fields?
by adoniram
Sat 06 Mar 2010 15:59
Forum: Universal Data Access Components
Topic: TuniMetadata with SQLServer 2005/2008
Replies: 1
Views: 2072

TuniMetadata with SQLServer 2005/2008

I try to use TuniMetadata with SQLServer 2008 to retrieve indexes information.

It works fine, but I need the schema information too, because I have tables on different schemas that I created.

When I get the Indexes metadata information, the field SCHEMA_TABLE from TUniMetadata is empty when the table belongs to schema that I created.

Debugging the source code, I found that the error is the "user_name" function on statement that fecth index information.

I use the same statement with "schema_name" and works fine.

SQLServer have been support schema since 2005 version.

It's happening on 3.00.0.7 version too.
by adoniram
Sat 06 Mar 2010 14:10
Forum: Universal Data Access Components
Topic: UniMetadata with SQLite and SQLServer.
Replies: 4
Views: 1576

Tobias,
I decide to work with schemas on SQLServer. Instead of spread tables among many databases, i will keep it on one database and put them on different schemas.
It solve my problem.

Thanks!
by adoniram
Fri 05 Mar 2010 21:13
Forum: Universal Data Access Components
Topic: UniMetadata with SQLite and SQLServer.
Replies: 4
Views: 1576

thanks!!!
by adoniram
Wed 03 Mar 2010 17:49
Forum: Universal Data Access Components
Topic: UniMetadata with Postgre
Replies: 3
Views: 1567

UniMetadata with Postgre

I try using uniMetadata with Postgre.
I have one index with "DESC" sorted field.
When I try to get the Descending Value from uniMetadata with IndexColumns Restrictions, it gives me 0 in descending column.

What can I do?