Search found 5532 matches

by AlexP
Fri 27 Jan 2017 08:58
Forum: EntityDAC
Topic: Entity Developer
Replies: 4
Views: 5649

Re: Entity Developer

Please specify what connection you want to implement one to one, one to many, etc.
by AlexP
Fri 27 Jan 2017 08:34
Forum: ODBC Drivers
Topic: Problem connecting with DevartODBCExactTarget driver
Replies: 7
Views: 153359

Re: Problem connecting with DevartODBCExactTarget driver

Glad to see that you have found the solution. If you have any other questions, feel free to contact us
by AlexP
Thu 26 Jan 2017 11:16
Forum: Oracle Data Access Components
Topic: Memory leak in dclOdac.bpl
Replies: 2
Views: 1986

Re: Memory leak in dclOdac.bpl

Hello,

Thank you for the information. We will fix MemoryLeak in the nearest version and also consider a possibility of "disabling" versions check.
by AlexP
Thu 26 Jan 2017 10:40
Forum: EntityDAC
Topic: Trial expired immediately on fresh install
Replies: 6
Views: 3723

Re: Trial expired immediately on fresh install

If you have any other questions, feel free to contact us
by AlexP
Thu 26 Jan 2017 09:46
Forum: Universal Data Access Components
Topic: dbMonitor - limit to certain connections
Replies: 2
Views: 1331

Re: dbMonitor - limit to certain connections

Hello,

The Debug components property is responsible for displaying the window with executed query, procedure, etc. and does not affect the display in dbMonitor. You can filter necessary components only in dbMonitor.
by AlexP
Thu 26 Jan 2017 08:52
Forum: EntityDAC
Topic: Trial expired immediately on fresh install
Replies: 6
Views: 3723

Re: Trial expired immediately on fresh install

Hello,

If you use our demo project, you need to uncomment the following strings in the EntityDemo.dpr file:

Code: Select all

EntityDAC.DataProvider.UniDAC, UniDacVcl,
  OracleUniProvider, SQLServerUniProvider, MySQLUniProvider, InterBaseUniProvider, PostgreSQLUniProvider, SQLiteUniProvider,
by AlexP
Wed 25 Jan 2017 08:25
Forum: Universal Data Access Components
Topic: What happend to SpecifiOptions?
Replies: 7
Views: 1514

Re: What happend to SpecifiOptions?

If you have any other questions, feel free to contact us
by AlexP
Wed 25 Jan 2017 08:25
Forum: Oracle Data Access Components
Topic: Clearing DataSet.IndexFieldNames without restoring original order?
Replies: 14
Views: 4115

Re: Clearing DataSet.IndexFieldNames without restoring original order?

If you have any other questions, feel free to contact us
by AlexP
Wed 25 Jan 2017 07:56
Forum: ODBC Drivers
Topic: Problem connecting with DevartODBCExactTarget driver
Replies: 7
Views: 153359

Re: Problem connecting with DevartODBCExactTarget driver

Try to use SQL Server authentication
by AlexP
Tue 24 Jan 2017 11:04
Forum: Oracle Data Access Components
Topic: Clearing DataSet.IndexFieldNames without restoring original order?
Replies: 14
Views: 4115

Re: Clearing DataSet.IndexFieldNames without restoring original order?

To restore the old behavior you need in the MemData module to change the TMemData.SortItems method as follows:

from the condition

Code: Select all

if  (IndexFieldsCount = 0) and not FOrderSaved then
delete the check

Code: Select all

and not FOrderSaved
by AlexP
Tue 24 Jan 2017 08:56
Forum: Universal Data Access Components
Topic: Global column name mapping ?
Replies: 1
Views: 998

Re: Global column name mapping ?

Hello,

There is no such functionality in UniDAC.
by AlexP
Tue 24 Jan 2017 08:37
Forum: ODBC Drivers
Topic: Problem connecting with DevartODBCExactTarget driver
Replies: 7
Views: 153359

Re: Problem connecting with DevartODBCExactTarget driver

Which authentication are you using in SSMS: Windows or SQL Server?
by AlexP
Tue 24 Jan 2017 08:27
Forum: Universal Data Access Components
Topic: What happend to SpecifiOptions?
Replies: 7
Views: 1514

Re: What happend to SpecifiOptions?

Macros are designed for other purposes, but you can use them in your case. In addition there are many other ways to set parameters, such as global variables, inheritance from our TuniConnection and adding your field, creating a separate class for error handling and so on.
by AlexP
Mon 23 Jan 2017 08:59
Forum: Universal Data Access Components
Topic: TVirtualTable : Append records from file
Replies: 1
Views: 1310

Re: TVirtualTable : Append records from file

Hello,

This behavior is not provided, however you can implement it by yourself using additional VirtualTable.
I mean to upload a new file into temporary TVirtualTable, then for example in a loop through this table to take records and insert into the main table. Or use our TCRBatchMove component for automatic data transfer from temporary TVirtualTable into the main one.
by AlexP
Mon 23 Jan 2017 08:21
Forum: Universal Data Access Components
Topic: What happend to SpecifiOptions?
Replies: 7
Views: 1514

Re: What happend to SpecifiOptions?

Please describe in more details the behavior you want to implement in macros - and we will try to help you resolve the issue.