Page 1 of 1

MySQL in VPS

Posted: Sat 14 Dec 2013 16:26
by cybsistemas
I have to make a program that works with a MySQL database that is on a VPS server.
How do I gain speed. ? (tips)
Version MyDac 7.6.12

Re: MySQL in VPS

Posted: Mon 16 Dec 2013 09:57
by AndreyZ
To improve the performance of data fetching in MyDAC, we suggest you to set the following options:
1. TMyQuery.ReadOnly to True (in case if you do not need to modify data).
2. TMyCQuery.FetchAll to True. In this case all data will be fetched to the client at once.
3. TMyQuery.FetchRows to a value that gives the most data fetching speed on your network (it is individual for each network). FetchRows affects only data fetching speed.

Re: MySQL in VPS

Posted: Mon 16 Dec 2013 11:07
by cybsistemas
Thanks

Re: MySQL in VPS

Posted: Mon 16 Dec 2013 12:02
by AndreyZ
You are welcome.