Search found 4 matches
- 01.05.2007, 22:17
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: ZeosLIb and stringgrid?
- Replies: 4
- Views: 1114
I figured out that the problem is not in stringgrid. I tryed to generate stringgrid of 100000x10 cells with some random text and the speed is quite OK. So the problem is with reading database. I am using (for reading) ZQuery with function next, (then read data), next (then read data).... is there an...
- 30.04.2007, 20:53
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: ZeosLIb and stringgrid?
- Replies: 4
- Views: 1114
ZeosLIb and stringgrid?
I am using stringgrid component instead of dbgrid for displaying query result, but when I have big result query it takes a lot of time to fill the stringgrid. If I switch to dbgrid, this happened much much faster. So, how to fill stringgrid with query result as fast as possible?
Thanks.
Thanks.
- 17.02.2007, 14:45
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Can't connect to MySQL during run-time
- Replies: 1
- Views: 497
Can't connect to MySQL during run-time
When I connect to MySQL during "design" mode in Delphi (Zconnection) everything is ok, without any problem. I can also see records in ZTable; But when I run program for debugging or EXE stand allone I can not connect with the same username, hostname, password... etc like in "Design&qu...
- 08.09.2006, 18:10
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Slow response with MYSQL db
- Replies: 1
- Views: 586
Slow response with MYSQL db
I made a program like: ************************************************************ form1.Link_Query.SQL.clear; form1.Link_Query.SQL.add('Select dok from racun_files where tip_dok LIKE ' + chr(39) +'easyracun'+ chr(39) + ' and id_dok LIKE ' +chr(39)+detail+chr(39)); form1.Link_Query.Active := true; ...