Search found 66 matches: overhead

Return to advanced search

Re: Advantage Database Server

... but they are having performance issues. You mentioned that PgDBE creates an internal field for each xBase index in the data table, which causes overhead. By the way it's interesting that government sites experience similar problems, but I haven't seen this on https://drunkid.com/buy/hawaii-fake-id/ ...
by ferilmagic
Fri Nov 03, 2023 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3650

Re: DBF . Commit

... a pity that only a few still use DBF here. Especially with mod harbour, DBF files are optimal. It's like on a single-user system and without the overhead of an SQL server. Especially for beginners who come from HTML but also need some database functionality - just like the Jet(access) engine ...
by Enrico Maria Giordano
Mon Oct 23, 2023 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2333

Re: DBF . Commit

... a pity that only a few still use DBF here. Especially with mod harbour, DBF files are optimal. It's like on a single-user system and without the overhead of an SQL server. Especially for beginners who come from HTML but also need some database functionality - just like the Jet(access) engine ...
by Otto
Mon Oct 23, 2023 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2333

Re: who use PostgreSQL with Fivewin ?

... will be "corrupt" for Xbase++ Apps using PgDBE but the Main work is : how to emulate ISAM Style Concept of Xbase++ PgDBE have a lot of Overhead so i look for a harbour / Fivewin Way --- when build TPQServer LIB there is a File rddcopy.c it have HB_FUNC( HB_PQCOPYFROMWA ) Question : ...
by Jimmy
Wed Sep 27, 2023 8:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1037

Re: FIVEWIN power - a room planer video

... to switch to something pre-made when you've been using your own component for the plan since 1995. The pre-made components have a lot of overhead. There's also a learning curve, and you always need something that is not supported. Therefore, I've decided to program the plan myself. The ...
by Otto
Tue Aug 29, 2023 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN power - a room planer video
Replies: 50
Views: 11075

room plan

... pre-made. I think I will program the plan myself again. The room plan itself is not very demanding. The pre-made components have a lot of overhead. Best regards, Otto https://mybergland.com/fwforum/plan.gif
by Otto
Fri Aug 25, 2023 2:03 pm
 
Forum: mod_harbour
Topic: room plan
Replies: 1
Views: 516

Re: Lost connection to MySQL server during query

... impractical to make sure the correct ODBC driver and configuration was loaded on each desktop .. In my opinion ODBC is a lot of configuration overhead .. where OLEDB or Microsoft.Jet.OLEDB.4.0 is built into EVERY Microsoft Windows operating system .. there is no verification needed if the ...
by Rick Lipkin
Fri Aug 04, 2023 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 37
Views: 12377

Re: INDEX on / seek in MARIA DB

... you are using FWMariaDB for MySql or MariaDB, this works with single field. Note: No indexes need to be build. Creating indexes is an unnecessary overhead. oRs:SetOrder( "fieldname" )oRs:Seek( uValue )  OR oRs:SetOrder( "CITY ASC,SALARY DESC" )  // multicol ...
by nageswaragunupudi
Thu May 18, 2023 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: INDEX on / seek in MARIA DB
Replies: 5
Views: 398

Re: HASH vs single variables

... simpler and more lightweight, and can be faster for certain types of operations, such as looking up an item by key. They also don't require the overhead of creating and managing objects, which can be beneficial for smaller programs or programs that need to handle a large number of simple data ...
by Otto
Tue Jan 17, 2023 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HASH vs single variables
Replies: 15
Views: 1093

Re: HASH vs single variables

... a class have here? I use classes for e.g. program setup, etc.. with my FIVEWIN programming. But it seems to me that with mod harbour the OOP is an overhead that brings nothing. Therefore a HASH seems favorable to me here. Probably this is because at the moment the programs are still very simple. ...
by VictorCasajuana
Tue Jan 17, 2023 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HASH vs single variables
Replies: 15
Views: 1093

Re: HASH vs single variables

... a class have here? I use classes for e.g. program setup, etc.. with my FIVEWIN programming. But it seems to me that with mod harbour the OOP is an overhead that brings nothing. Therefore a HASH seems favorable to me here. Probably this is because at the moment the programs are still very simple. ...
by Otto
Tue Jan 17, 2023 1:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HASH vs single variables
Replies: 15
Views: 1093

Re: View deleted records in xBrowse

... that may not be possible. After looking at the source for the classes, and any documentation, I couldn't find any answer .. Marc, thats a lot of overhead to do the indexing, and might not solve the problem anyway. Thanks for the idea ... Tim
by TimStone
Tue Dec 13, 2022 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: View deleted records in xBrowse
Replies: 8
Views: 700

Re: Advantage Database Server

... SQL for ISAM Style Alaska did create a "internal" FIELD for each xBase "Index" in Data-Table so you will got a lot of Overhead. as Xbase++ is still using 1 x Core "only" PgDBE does not perform well ... :roll: --- when use OOP Syntax it is "easy" ...
by Jimmy
Mon Jan 24, 2022 7:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3650

Re: database oDbf

Another method, without the overhead of creating 2 TDatabase objects.

Code: Select all  Expand view

SELECT 1
aData := FW_DBFToArray( nil, nil, nil, 1 )

SELECT 2
FW_ArrayToDbf( aData )
 
by nageswaragunupudi
Wed May 05, 2021 9:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: database oDbf
Replies: 9
Views: 1220

Re: Speedtest CLIPPER vs. xHarbour - COMMIT

... request for open file handle to the OS and this is single function call inside each user dbCommit() if _SET_HARDCOMMIT is not disabled. All time overhead if any is out of Harbour code.
by Antonio Linares
Fri Apr 30, 2021 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Speedtest CLIPPER vs. xHarbour - COMMIT
Replies: 20
Views: 5717
Next

Return to advanced search