But ok, I will tray other way to handle my large databases. For large tables, do NOT use RowSet. There is another class RecSet specially made to handle very large tables. Let us try to open "custbig" table which has more than 4 million records. #include "fivewin.ch"function Main...
Here it is working for me with FWH2307 and FWH2310. This is my sample program. #include "fivewin.ch"function Main() local oCn := maria_Connect( "208.91.198.197:3306,fwhdemo,gnraofwh,Bharat@1950", .t. ) local oRs MsgRun( "Reading RowSet", &quo...
Here it is working for me with FWH2307 and FWH2310. This is my sample program. #include "fivewin.ch"function Main() local oCn := maria_Connect( "208.91.198.197:3306,fwhdemo,gnraofwh,Bharat@1950", .t. ) local oRs MsgRun...
Thank you Mr. Rao. I am using FWH 23.10: Application=========== Path and name: D:\Softway\ProjetosWanderson\EsocialSQL\sinwin.EXE (32 bits) Size: ********* bytes Compiler version: xHarbour 1.3.0 Intl. (SimpLex) (Build 20231104) FiveWin version: FWH 23.10 C compiler...
oRs := oCn:RowSet( "select * from custx where state = ? ",{ 'NY' },500,.T. ) This is working in the recent versions but not in 1709 This works in 1709 oRs := oCn:RowSet( "select * from custx where state = 'NY' ",500,.T. ) OR oRs := oCn:RowSet( "...
Thank you Mr. Rao. I tried built other sample: function Test() local oRs, cTable,oCn local oWnd, oBrw, oFont oCn := maria_Connect( "209.250.245.152,fwh,fwhuser,FiveTech@2022" ) if oCn <> NIL ? "Conected" endif oRs := oCn:RowSet( &quo...
... TArrayData ( source\classes\tarrdata.prg ) Corrección de errores: relacionados con el uso de PValue() en xHarbour. * Control TEdit: Nueva DATA lReadOnly: lReadOnly también se puede activar en tiempo de ejecución. * Función RoundBox() nuevo undecimo parámetro nPenStyle, por defecto PS_SOLID. ...
... etc. Fixed * TArrayData class ( source\classes\tarrdata.prg ) Bug fixes: relating to use of PValue() in xHarbour * TEdit control: New DATA lReadOnly: lReadOnly can be toggled during runtime also. * function RoundBox() new 11th parameter nPenStyle, default PS_SOLID Syntax: RoundBox( hDC, ...
... yes allready saw it compile this test without :SetMultiSelectCol() you'll see this error Error description: Error BASE/1005 No exported variable: LREADONLY Args: [ 1] = U [ 2] = L .T. Stack Calls =========== Called from: xbmulsel.prg => _LREADONLY( 0 ) Called from: xbmulsel.prg => (b)MAIN( ...