Search found 475 matches: rowset

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... derived from tDataRow class. This enables editing a single existing record or a new record and saving to a table without having to open RowSet object, thus saving time. Usage: oCustRec := oCn:Record( "customer" ) // creates a blank record oCustRec:Edit() // edit and save (append) ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 44

Re: FWH 2006: XBrowse : Own built-in Buttonbar

He armado este ejemplo con un rowset pero con la clausula AUTOSORT y no ordena las columnas, solo al colocar // XbrSetupBar( oBrw ) vueve a ordernar, podria verificar si es asi o estoy haciendo algo mal ? Please modify xbrowse and apply ...
by nageswaragunupudi
Tue Apr 16, 2024 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2006: XBrowse : Own built-in Buttonbar
Replies: 14
Views: 2261

Re: Ayuda con un RowSet y xBrowse

Excelente Alejandro,
! Viva la libertad carajo !
tienes un ejemplo mas completo ?
saludos !
by sysctrl2
Mon Apr 15, 2024 10:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con un RowSet y xBrowse
Replies: 2
Views: 102

Re: Ayuda con un RowSet y xBrowse

Solucionado! En principio, decidí separar apellido y nombres, el problema que tenía lo pude solucionar de la siguiente manera y dejé de tener el error TYPE MISMATCH    aCols     := { "legajo",;                      "apellido",;                      "nombres",;     ...
by TecniSoftware
Mon Apr 15, 2024 9:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con un RowSet y xBrowse
Replies: 2
Views: 102

Ayuda con un RowSet y xBrowse

Tengo el siguiente RowSet en MariaDB:    TEXT INTO cQuery      SELECT legajo,             apellido,             nombres,             colegios.detalle as colegio,             grupo        FROM padron   LEFT JOIN colegios ON padron.grupo ...
by TecniSoftware
Mon Apr 15, 2024 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con un RowSet y xBrowse
Replies: 2
Views: 102

Re: FWH 2006: XBrowse : Own built-in Buttonbar

He armado este ejemplo con un rowset pero con la clausula AUTOSORT y no ordena las columnas, solo al colocar // XbrSetupBar( oBrw ) vueve a ordernar, podria verificar si es asi o estoy haciendo algo mal ? Yes. This is a bug. Thanks a lot ...
by nageswaragunupudi
Fri Apr 12, 2024 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2006: XBrowse : Own built-in Buttonbar
Replies: 14
Views: 2261

Re: FWH 2006: XBrowse : Own built-in Buttonbar

Rao He armado este ejemplo con un rowset pero con la clausula AUTOSORT y no ordena las columnas, solo al colocar // XbrSetupBar( oBrw ) vueve a ordernar, podria verificar si es asi o estoy haciendo algo mal ? Muchas gracias. #include "fivewin.ch"static ...
by TecniSoftware
Fri Apr 12, 2024 12:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2006: XBrowse : Own built-in Buttonbar
Replies: 14
Views: 2261

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: 4039

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: 4039

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: 4039

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: 4039

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: 4039

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: 4039

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: 4039

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: 4039
Next

Return to advanced search