Which features do you want to see in next MyDAC versions?

Discussion of open issues, suggestions and bugs regarding MyDAC (Data Access Components for MySQL) for Delphi, C++Builder, Lazarus (and FPC)

Which features do you want to see in next MyDAC versions?

 
Total votes: 0

GEswin
Posts: 186
Joined: Wed 03 Nov 2004 16:57
Location: Spain
Contact:

update of source

Post by GEswin » Mon 19 Dec 2005 10:18

Another thing I would like to see is a way for Professional Users (That licenses that include source code), a way to get hot-fixes of source directly without having to wait for a new build (For example download files changed since last official version that fixes reported issues).

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Post by Ikar » Mon 19 Dec 2005 16:15

If fix isn't too complex you can request patch by e-mail. In other case you can get untested and unstable version.

tmliaw
Posts: 3
Joined: Thu 04 Nov 2004 08:51
Location: Malaysia

Post by tmliaw » Fri 20 Jan 2006 08:36

Hi,
I would to see enhancement for the Backup component. Right now the component only allow to do backup at server site but it would be nice to have the backup done at the client site and have it store in the client hard drive. Secondly, the Backup component should able to handle very large data size. Thanks

Jonathan Liaw

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Post by Ikar » Fri 20 Jan 2006 15:06

The MyBackup component is used to execute native MySQL Server backup/restore commands (like BACKUP TABLE, RESTORE TABLE, LOAD DATA, etc). It is based on MySQL Server functionality only and therefore can't be improved. If you need to work on client side and have more functionality than MyBackup has, try using MyDump component. It can store databases, users, stored procedures, tables, data as a script and also restore them from received script. For more information read MyDAC Help.

GEswin
Posts: 186
Joined: Wed 03 Nov 2004 16:57
Location: Spain
Contact:

Post by GEswin » Tue 14 Feb 2006 09:07

Is there already a definitive list of features/changes that will be implemented in near time ?

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Post by Ikar » Mon 13 Mar 2006 10:44

Dear users who voted for performance improvements, in order to optimize our work we would like to hear your opinion on where exactly performance should be boosted. For example, if you experience erformance troubles with issuing INSERT statements, or using parameters, or with fetching certain data types please inform us about it. Samples that demonstrate the problem are highly appreciated (mydac*crlab*com).

Scratch
Posts: 2
Joined: Mon 20 Feb 2006 12:57

Post by Scratch » Tue 21 Mar 2006 13:33

Embedded openssl support would be cool... BTW It could be a good idea to distribute it separately (for free (best :) ) or for reasonable price) Because there is no good analog of embedded openssl for delphi
Thanks in advance

bravecobra
Posts: 11
Joined: Tue 21 Mar 2006 11:20

Post by bravecobra » Tue 30 May 2006 09:54

Ikar wrote:
swierzbicki wrote:Is it possible to implement such extention to the param type :

AsIntegerList
AsStringList
AsFloatList ...
Both MySQL or VCL does not support this behavior. It is unlikely that we implement it in the foreseeable future.
Basically is just a matter of not enquoting the parameter in the SQL statement. So, although the parameter is a string, don't enquote it when inserting into the SQL statement. Problem solved. But currently with 4.30, that doesn't seem to be an option.

Post Reply