Search found 139 matches: lreadonly

Return to advanced search

Re: RowSet Large and lReadonly

Mr Rao, everything ok now, with these 3 classes I can solve everything I need.

Thank you for your attention.

Regards.
by Eroni
Tue Jun 04, 2024 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

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...
by nageswaragunupudi
Tue Jun 04, 2024 8:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

But using xHarbour results an error:

Please write to me to this email address:
nageswaragunupudi [at] gmail [dot] com

We will send you revised libraries for both harbour and xharbour.
by nageswaragunupudi
Tue Jun 04, 2024 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

Thank you for your attention Mr Rao,

I just tested with harbour and really works fine.

But using xHarbour results an error:
http://flynfe.com.br/download/Sample.mp4
But ok, I will tray other way to handle my large databases.

Regards.
by Eroni
Mon Jun 03, 2024 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

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...
by nageswaragunupudi
Mon Jun 03, 2024 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

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...
by nageswaragunupudi
Mon Jun 03, 2024 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

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...
by Eroni
Sat Jun 01, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

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( "...
by nageswaragunupudi
Sat Jun 01, 2024 4:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

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...
by Eroni
Fri May 31, 2024 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: RowSet Large and lReadonly

Yes
by nageswaragunupudi
Fri May 31, 2024 3:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

RowSet Large and lReadonly

Dear all,
Is possible rowset and lreadonly works the same time?
Like this:

Code: Select all  Expand view  RUN
oRs := oCn:RowSet( <table>, nRows,.T. )


Regards.
by Eroni
Fri May 31, 2024 2:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RowSet Large and lReadonly
Replies: 10
Views: 867

Re: New FTDN April 2024 (FWH 24.04)

... 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. ...
by Antonio Linares
Wed May 01, 2024 7:04 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 2135

New FTDN April 2024 (FWH 24.04)

... 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, ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 2135

Re: SetMultiSelectCol() on line

... 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( ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 641

Re: incremental search on Xbrowse

Hi Rao,
yes,
this is default in my Std management of table,

::oBrw:SetMultiSelectCol( )

I rarely disable it using the property :

::oBrw:oMultiSelCol:lReadOnly := .T.

TIA
by mauri.menabue
Wed Mar 27, 2024 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2868
Next

Return to advanced search