Search found 50 matches: appends

Return to advanced search

Re: Data exchange between PC and Android device on the same loca

... Hello friends, Here you see the source code how the mod harbour web APP sends the data with AJAX and how on the server a program gets the data and appends to a DBF file. We delete the local storage if we get back success from the server. If there raises a problem, the data remains stored in the ...
by Otto
Fri Feb 23, 2024 8:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 798

Re: DBF . Commit

Rick Lipkin wrote:I will say that I find dbCommitt() very slow when you are adding many records at one time with a dbCommitt between appends.


Of course. One COMMIT at the end is enough.
by Enrico Maria Giordano
Thu Oct 26, 2023 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2342

Re: DBF . Commit

... or in dbfcdx goto recno().... I will say that I find dbCommitt() very slow when you are adding many records at one time with a dbCommitt between appends. Rick Lipkin
by Rick Lipkin
Tue Oct 24, 2023 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2342

save data with AJAX

Hello friends, Here you see the source code how the mod harbour web APP sends the data with AJAX and how on the server a program gets the data and appends to a DBF file. We delete the local storage if we get back success from the server. If there raises a problem, the data remains stored in the ...
by Otto
Tue Aug 30, 2022 3:32 pm
 
Forum: mod_harbour
Topic: save data with AJAX
Replies: 0
Views: 215

INI-files and mod harbour

... - If the dbf does not exist, dbf is created - Opens the dbf and chceks for the keys - If the keys exist, updates the value in the dbf - Otherwise appends a new entry with the values. EditIniDBF( cDbf ) - If the dbf does not exist and user wants to create, then the dbf is created - User can edit ...
by Otto
Mon Jan 03, 2022 8:21 am
 
Forum: mod_harbour
Topic: INI-files and mod harbour
Replies: 2
Views: 223

Re: Speedtest DBF vs. LetoDB and mySQL

... file 100 times. So I will build a small test program. I started with this test. The first button opens the database 2000 times. The second switch appends a data record in each work area. https://mybergland.com/fwforum/dbfspeed.gif
by Otto
Fri Oct 15, 2021 11:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Speedtest DBF vs. LetoDB and mySQL
Replies: 22
Views: 1778

Re: Insertar/Modificar registros en ACCESS

... it before getting into the next discussion. If you open the recordset with adLockBatchOtpimistic mode, all changes (modifications, deletions and appends) are written only to the Recordset in our PC's MEMORY ONLY but NOT written to the physical database. To finally save all the changes at once ...
by nageswaragunupudi
Wed Dec 04, 2019 5:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar/Modificar registros en ACCESS
Replies: 5
Views: 869

New FTDN September/Septiembre 2019 (FWH 19.09)

... is on a single field. Now the order is restored even on multi-field sort asc/desc. * NEW: FWMariaRowset BATCHMODE In the batch mode, all edits, appends and deletes are retained in the memory only and nothing is written to the database, till all the changes are written in one call to SaveBatch() ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2900

New FTDN May/Mayo 2019 (FWH 19.05)

... - Fix: oDbf:Blank(), assign values and calling oDbf:Save() is not working when eof is .t. Fixed now. - Fix: oDbf:Append() without parameters appends blank. But oDbf:Load() needs to be called for assigning values and saving. Now oDbf:Append() calls Load() also. - New method Browse( [cTitle], ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3160

Re: to Nages: test for tdatabase

... ID assigned ( ie. Workorder/Invoice, customer number, accounting, etc ). Since I have classes for each process like work orders, my Add() method appends a record, fills the buffers with blanks, then goes to the counter dbf, increments the proper number, saves the value back to the record, and ...
by nageswaragunupudi
Sat Apr 27, 2019 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5688

Re: to Nages: test for tdatabase

... ID assigned ( ie. Workorder/Invoice, customer number, accounting, etc ). Since I have classes for each process like work orders, my Add() method appends a record, fills the buffers with blanks, then goes to the counter dbf, increments the proper number, saves the value back to the record, and ...
by TimStone
Sat Apr 27, 2019 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5688

Re: New FTDN January/Enero 2019 (FWH 19.01)

... eg: dbf exists is already open, etc. In such cases oDbf:Used() returns .f. - Improved interface with DataRow: When Datarow object saves changes or appends new record, the changes automatically made directly by RDD like fields "+", "=" and triggers are immediately communicated ...
by Antonio Linares
Tue Feb 19, 2019 12:18 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2019 (FWH 19.01)
Replies: 4
Views: 2708

Re: Problem to save a value

At present FW_ArrayToDbf(...) only appends records. For this reason, you need to Zap the dbf. In FWH 19.01, we added a new 4th parameter lOverWrite. If this parameter is set to .T., it overwrites the existing data from the current record. ...
by nageswaragunupudi
Fri Jan 04, 2019 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem to save a value
Replies: 3
Views: 999

Re: MariaDB RS AppendBlank

Yes, that is the expected behaviour.

I advised you to use
oRs:bEdit := <yourfunc>
and
then
oRs:Edit( .t. )

Please stick to this approach only for edits/appends.
by nageswaragunupudi
Wed Sep 12, 2018 6:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB RS AppendBlank (SOLVED)
Replies: 12
Views: 1664

Re: MariaDB RS AppendBlank

Are you using appendblank() for inline appends in XBrowse ?
by nageswaragunupudi
Tue Sep 11, 2018 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB RS AppendBlank (SOLVED)
Replies: 12
Views: 1664
Next

Return to advanced search

cron