41 results found
-
244 votes
-
Interbase transaction for UniDAC
Add full support for Interbase/Firebird transactions to UniDAC.
189 votes -
Creating a Native provider for DBF
Create a Native provider for working with DBF databases, which will work not through ODBC driver, but directly with DBF files.
157 votes -
connect dialog
Better connect dialog that includes functionality for 'role', password encryption and browse capabilities for the server and database drop downs.
139 votes -
Adding the AutoCommit property
Add the AutoCommit property to UniDAC, which allows you to set whether Commit will be performed automatically.
110 votes -
Add support for IPv6 addresses in direct TCP/IP mode
Currently, it does not work with IP adresses like 2001:0:5ef5:79fb:c91:a6e:f5b6:bf83
99 votes -
Client Side Record encrypt / decrypt
Client Side Record encrypt / decrypt
77 votes -
Add support for IPV6 addresses
Currently MyDAC does not support IPV6 ...
69 votes -
Improve TVirtualTable
Add Master/Details support
Improve fields.assign method (recover fields caption ...)60 votes -
Support for MongoDB either in UniDAC or as a separate VCL product
I'd like to see UniDAC support MongoDb which is a scalable, NoSQL database that supports replication, high availability, auto-sharding, indexing, querying, GridFS (large files), stores BSON documents (binary JSON). MongoDB is ideal for storing large amounts of text or binary data, and makes it ideal for web sites with huge amounts of data that can't be handled by conventional relational databases like MySQL or Oracle.
Customers include Disney, Craigslist, Forbes, Spike, Intuit, Sourceforge, New York Times ...
See www.mongodb.org for more info on this free open source database.
45 votesMongoDB provider ia added in UniDAC
-
Support SQLite in a separate product
Currently we provide UniDAC components for working with SQLite. UniDAC are universal component for database access, they provide universal interface for working with different databases. As it is a universal product, it may lack support for some specific database features in some DBMS.
If we separate SQLite database access to a dedicated product, this will allow support for all specific SQLite features and make SQLite access cheaper, because this product will cost less than UniDAC.
35 votesDevart Team is proud to present LiteDAC – SQLite Data Access Components for Delphi.
To learn about the new product, refer to its page on the Devart website: http://www.devart.com/litedac/ -
Direct mode connections in FreePascal (Linux and MS Windows)
Add support of Direct mode for ODAC in FreePascal, because today FPC is the only tool for compiling pascal modules for Apache 2.2.
30 votes -
Implement compression to get most out of the FireBird 3
Firebird 3 supports the compression between client and server.
If possible implement this, it would make significant impact to the speed on slow connection (especially with large queries)
26 votesHello,
We supported Firebird compression in IBDAC 6.4.1.
You can enable it using the WireCompression parameter:
IBCConnection1.Params.Add(‘WireCompression=true’);Please note that you should use the zlib1.dll library, which has matching bitness. The zlib1.dll library should be placed in the directory with your executable file. Please make sure that your application uses the library the TIBCConnection.Connect method is called.
-
Add a method to empty table
Add a method to empty table (delete all the table data). For example, it may be called EmptyTable.
26 votesWe have added the method TCustomDADataSet.EmptyTable(const TableName: string);
-
Save empty string fields as NULL
Some databases allow saving an empty string optionally as NULL or as empty string. Query result can differ depending on how the string was saved.
select *
from test_table
where str is null
will return strings that were saved as NULL valuesselect *
from test_table
where str = ''
will return strings that were saved as empty stringsWe can add an EmptyStringAsNull option, which will force saving empty strings as NULL values.
24 votes -
ConnectionDialog improvements (Oracle)
- Add possibility to choose whether to use Direct mode.
- Add possibility to use OS Authentication
24 votes -
Support for both Direct and OCI connections in one application
Add support for both Direct and OCI connections in one application.
24 votes -
Creating a provider for DBF
Creating a separate provider for working with DBF databases will simplify opening such databases (you will need to specify only a path to the DBF files) and will provide support for some specific features of this database.
23 votes -
Support for Table-Valued Parameters SQL Server 2008
Add support Table-Valued Parameters for SQL Server 2008
23 votes -
Creating Native providers for Sybase ASE and ASA
Create Native providers, which will work not through ODBC, but through the Native client, for Sybase ASE and ASA.
22 votesDirect Mode is supported for ASE. Now direct connection avoiding ODBC and Native Client is available.
- Don't see your idea?