Search found 152 matches: choosing

Return to advanced search

Re: Choosing SQL database ...

You have to load a recordset before ADO can do its magic. The problem is exactly this loading time.

EMG
by Enrico Maria Giordano
Tue Nov 03, 2009 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Ok. But this was exactly the point. We can't do fast incremental searching using SQL in an engine-independent way. SQL was been designed to be a "query-language" not for the modern interactive applications. EMG Enrico , Something I can't understand - ADODb have .Find( cExpr ) method , whe...
by Rimantas
Tue Nov 03, 2009 7:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Ok. But this was exactly the point. We can't do fast incremental searching using SQL in an engine-independent way. SQL was been designed to be a "query-language" not for the modern interactive applications.

EMG
by Enrico Maria Giordano
Tue Nov 03, 2009 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

You are using LIMIT clause that is NOT standard SQL. EMG mmm yep.. you are rigth.. but you have the equivalent in. Mysql= Select * from clientes limit 10 Sql Server= select top 10 from clientes Oracle=select * from cliente where rownum <= 10 Postgress=select * from clientes limit 10 Sybase= set ...
by Adolfo
Tue Nov 03, 2009 11:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

You are using LIMIT clause that is NOT standard SQL.

EMG
by Enrico Maria Giordano
Tue Nov 03, 2009 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Paging does a good trick when retrieving data is involved... Sorry, but paging can't be achieved using standard SQL, that was my earlier objection. EMG Enrico.. download my class. See the example... See methods PgUp,PageDown,FirstPage,LastPage... a minimal modification on Skip Method, and you have ...
by Adolfo
Mon Nov 02, 2009 10:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Adolfo wrote:Paging does a good trick when retrieving data is involved...


Sorry, but paging can't be achieved using standard SQL, that was my earlier objection.

EMG
by Enrico Maria Giordano
Mon Nov 02, 2009 9:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

I'm not sure if you already did, but would you please point again to that thread where you publish your tado class? Thank you, Reinaldo. Reinaldo Here you have the post. Download it, try it, comment it http://forums.fivetechsupport.com/viewtopic.php?f=6&t=17178 From Chile Adolfo
by Adolfo
Mon Nov 02, 2009 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

... point to consider is that applications usually have a number of different databases (tables) of different record sizes and numbers of records, so choosing which database type (SQL or DBF) is not a simple matter size one may be faster in some situations and the other faster in other situations. ...
by James Bott
Mon Nov 02, 2009 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

I'm not sure if you already did, but would you please point again to that thread where you publish your tado class?

Thank you,



Reinaldo.
by reinaldocrespo
Mon Nov 02, 2009 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Enrico... Paging does a good trick when retrieving data is involved... both on the server ( because the DB and the ADO client supports PAGES ) or by prg code, for instance, I get a 30 items browse and I takes 0,00001 second to get filled, instead of the 4 seconds for the 400.000 items in the test ta...
by Adolfo
Mon Nov 02, 2009 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Adolfo wrote:ADO's is slower when getting data, and also consumes more bandwith when you first call the xbrowse,but... thats all, after the job is done, no more net traffic is present.


This is expected. The slowness in getting data is exactly the problem. But it's not an ADO problem. It's the SQL way.

EMG
by Enrico Maria Giordano
Mon Nov 02, 2009 5:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Hi.

I'd like to see the SeekIncremental() function code as well, please?

Reinaldo.
by reinaldocrespo
Mon Nov 02, 2009 4:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Hi everybody. Here you have the results for the test I did. Client PC Pentium 4 1 gb Ram Xp Professional SP2 Ethernet DLink 100mb Switch TENDA 24 + 2 Web Administrable Mysql Server Athlon Xp 2 Gb Ram Linux Fedora Core 8 Mysql 5.0.01 Ethernet Realtek 100MB File Server Pentium 4 4 Gb Ram Windows 2003 ...
by Adolfo
Mon Nov 02, 2009 3:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

Hi everybody..

I did the test this weekend. Got the results ( with some surprises...)

I'm going to tabulate them in an excel sheet, and upload it in an hour.

From Chile
Adolfo
by Adolfo
Mon Nov 02, 2009 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458
PreviousNext

Return to advanced search