Which features do you want to see in next MyDAC versions?
update of source
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).
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
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
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.
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).
-
bravecobra
- Posts: 11
- Joined: Tue 21 Mar 2006 11:20
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.Ikar wrote:Both MySQL or VCL does not support this behavior. It is unlikely that we implement it in the foreseeable future.swierzbicki wrote:Is it possible to implement such extention to the param type :
AsIntegerList
AsStringList
AsFloatList ...