Search found 558 matches: performance

Return to advanced search

Compiler with MSVC y HARBOUR

... a little) I hope it helps you and gives you the opportunity to use these wonderful tools with which you will notice the big difference in the performance of your systems.
by acuellar
Thu Apr 18, 2024 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 144

Compilar con MSVC y HARBOUR

... el ejecutable) Espero les ayude y sea la oportunidad de utilizar estas maravillosas herramientas con las cuales notaran la gran diferencia en la performance de sus sistemas
by acuellar
Thu Apr 18, 2024 8:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar con MSVC y HARBOUR
Replies: 0
Views: 81

Re: Question about performance RowSet

Thanks for the confirmation.
Fixed properly in the next version
by nageswaragunupudi
Fri Mar 22, 2024 4:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

Thank you very much for pointing out this error. This example works perfectly fine with Harbour but fails with xHarbour with this run-time error. This bug is due to my ignoring the difference in the behavior between Harbour and xHarbour of a function PValue(). We regret the inconvenience. You can f...
by Eroni
Fri Mar 22, 2024 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

In the next release we will have: oRec := oCn:Record( cTable )oRec:Edit() for editing and saving a blank record. oRec := oCn:Record( cTable, cWhere )oRec:Edit() for editing a single existing record and saving the modifications. oCn:Record(...) creates a FWMariaRecord ...
by nageswaragunupudi
Thu Mar 21, 2024 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

Thank you very much for pointing out this error. This example works perfectly fine with Harbour but fails with xHarbour with this run-time error. This bug is due to my ignoring the difference in the behavior between Harbour and xHarbour of a function PValue(). We regret the inconvenience. You can fi...
by nageswaragunupudi
Thu Mar 21, 2024 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

nageswaragunupudi wrote:
Run time error:

Which version of FWH did you test with please?


Mr Rao,
Fivewin 23.10 xHarbour 123, BCC 77.
by Eroni
Thu Mar 21, 2024 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

Run time error:

Which version of FWH did you test with please?
by nageswaragunupudi
Wed Mar 20, 2024 8:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

Please try this for adding new record. This is working for me and should work for you too. First run this program as it is without changes before you adopt to your tables. function MariaNewRecord()   local oCn := maria_Connect( "209.250.245.152,fwh,fwhuser,FiveTech@2022" )...
by Eroni
Wed Mar 20, 2024 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

Hello Mr. Rao. I am try this: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" )if aRow == NIL // not found, then inserts    aRow := { "aa","bb" }    oCn:Upsert( "states", nil, { aRow } )endif  But...
by Eroni
Wed Mar 20, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

Please try this for adding new record. This is working for me and should work for you too. First run this program as it is without changes before you adopt to your tables. function MariaNewRecord()   local oCn := maria_Connect( "209.250.245.152,fwh,fwhuser,FiveTech@2022&qu...
by nageswaragunupudi
Wed Mar 20, 2024 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

I am try this: Code: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" ) if aRow == NIL // not found, then inserts aRow := { "aa","bb" } oCn:Upsert( "states", nil, { aRow } ) endif But insert not work. Table `states` has 3 fields: id...
by nageswaragunupudi
Wed Mar 20, 2024 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

I am thinking of adding method to get a single record from a table ( existing or new ) and then edit and save the data. May be something like this: oRecord := oCn:Record( cSql, [lBlank] ) // returns FW_Record / TDataRow objectoRecord:Edit() This would be very good, I believe...
by Eroni
Wed Mar 20, 2024 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

when i have a button to "insert' a new record, is there other way editing data without RowSet object? Please try this and let us know.   oData := TArrayData():New( oCn, "select * from <tablename> limit 1" )   oData:Record(,.t.):Edit()   oData:Sav...
by Eroni
Wed Mar 20, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040

Re: Question about performance RowSet

As you indicated above, if we want to edit just one record in a table, we can aRow := oCn:QueryResult( "select * from states where code='WA'" )//We get a single dim array { "WA", "Washington" }// Edit the array and thenoCn:Upsert( "states", nil, &...
by Eroni
Wed Mar 20, 2024 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4040
Next

Return to advanced search