Search found 30 matches: uresult

Return to advanced search

Re: Program techniques : change indexorder or use aliases

* New: function FW_DBFLOOKUP( uVal, [cOrder], bcRetExprn ) --> uResult uVal : Value / Expression to be lookedup ( seek or locate ) cOrder : OrderName for seek. Or field name for locate. Omit if uVal is an expression bcRetExpr: codeblock/string: Expression ...
by Marc Venken
Wed Nov 04, 2020 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 652

Re: Cantidad de registros afectados en un UPDATE

... usar el metodo execute del objeto coneccion, la documentacion indica lo siguiente: METHOD Execute( cSqlStatement, [params], [lShowError] ) --> uResult (Can also use oCn:SqlQuery(...) ) uResult can be a) nil if there is no result or if error occured. In case of error, oCn:nError and oCn:cError ...
by admsoporte
Thu Jan 10, 2019 1:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cantidad de registros afectados en un UPDATE
Replies: 1
Views: 518

Re: How to Create Easy Report Designer Files ?

... 'NCOL' .\source\ereport.prg(5307) Warning W0001 Ambiguous reference 'NFLAGS' .\source\ereport.prg(5307) Warning W0001 Ambiguous reference 'URESULT' .\source\ereport.prg(5309) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5311) Warning W0001 Ambiguous reference 'URESULT' ...
by Otto
Sun Jan 06, 2019 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Create Easy Report Designer Files ?
Replies: 35
Views: 6985

Re: How to Create Easy Report Designer Files ?

... 'NCOL' .\source\ereport.prg(5307) Warning W0001 Ambiguous reference 'NFLAGS' .\source\ereport.prg(5307) Warning W0001 Ambiguous reference 'URESULT' .\source\ereport.prg(5309) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5311) Warning W0001 Ambiguous reference 'URESULT' ...
by Otto
Sat Jan 05, 2019 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Create Easy Report Designer Files ?
Replies: 35
Views: 6985

Re: Utilizar funciones de una dll con harbour

... ) ; local _hDLL := If( ValType( "user32.dll" ) == "N", "user32.dll", LoadLibrary( "user32.dll" ) ) ; local uResult ; local cFarProc ; if Abs( _hDLL ) > 32 ; cFarProc = GetProcAdd( _hDLL, If( Empty( "GetWindowTextA" ) == .T., "GetTextW", ...
by Xevi
Mon Dec 10, 2018 8:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Utilizar funciones de una dll con harbour
Replies: 6
Views: 1314

Re: xBrowse as record adding tool for data tables

ADS stored procedure or MySql stored procedure?

If it is MySql stored procedure, FWH directly provides full mySql functionality.
Calling a stored procedure is as simple as

uResult := oCn:Call( "procedurename", aParams )
by nageswaragunupudi
Thu Dec 07, 2017 3:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse as record adding tool for data tables
Replies: 16
Views: 2982

Re: funciones de FWH y Harbour en un archivo .txt

... HB_DiskSpace(<cDrive>,[<nType>])->nBytes HB_DllDo(<cFuncName>,[<params...>])->uResult HB_DTOC(<dDate>[,<cDateFormat>])-><cDate> HB_DumpVar(<xValue>)->cText HB_EnumIndex()->nIteration HB_EnumIndex()->nIteration ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5627

New FTDN September/Septiembre 2017 (FWH 17.09)

... cErrLogText, cErrLogFile ) See \fwh\source\function\errsysw.prg for more details * New: function FW_DBFLOOKUP( uVal, [cOrder], bcRetExprn ) --> uResult uVal : Value / Expression to be lookedup ( seek or locate ) cOrder : OrderName for seek. Or field name for locate. Omit if uVal is an expression ...
by Antonio Linares
Wed Oct 04, 2017 7:43 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2017 (FWH 17.09)
Replies: 3
Views: 3305

TDatabase FWH 17.08 : Datas and Methods

... movement and modification. 55. Lock() Executes FLOCK() 56. Locked() Same as ::IsRecLocked() 57. LookUp( uSeek, [cOrder/cField], bcRetExpr ) --> uResult Looks up value in the table and return the result of expression in the 3rd parameter. The record position and sort order are restored before ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1781

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... Pivot array formatted for diplay in xbrowse. Functions similar to the ADO function. METHOD Execute( cSqlStatement, [params], [lShowError] ) --> uResult (Can also use oCn:SqlQuery(...) ) uResult can be a) nil if there is no result or if error occured. In case of error, oCn:nError and oCn:cError ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28051

Re: ADO RDD xHarbour

... Code: MSGINFO("Relations in ADO SQL with record number are not allowed! See adordd.prg") nReturn := ADO_GOTO( aRelInfo[ UR_RI_CHILD ], uResult ) //-> uResult is type "C" The nRecord its always N type. Unless bookmarks are used and with it the results will be unpredictable. ...
by AHF
Fri May 15, 2015 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441911

Re: ADO RDD xHarbour

Antonio, I dont know if uResult it is provided by reference because its called from dbeval(). Dont know why but UR_SUPER_EVALBLOCK( nArea, bBlock, uResult ) works! (without @) Adordd its almost ready ! Now adordd its a true Rdd! There ...
by AHF
Wed Apr 22, 2015 5:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441911

Re: ADO RDD xHarbour

UR_SUPER_EVALBLOCK( nArea, bBlock, @uResult ) maybe ?
by Antonio Linares
Wed Apr 22, 2015 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441911

Re: ADO RDD xHarbour

Isn't uResult provided by reference ?

If not, then this value will be lost:

uResult := Eval( bBlock )

not sure if it will be also applicable to:

UR_SUPER_EVALBLOCK( nArea, bBlock, uResult )
by Antonio Linares
Wed Apr 22, 2015 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441911

Re: ADO RDD xHarbour

... W0001 Ambiguous reference 'CSQL' lucas.prg(1406) Warning W0001 Ambiguous reference 'YURETURN' lucas.prg(1440) Warning W0001 Ambiguous reference 'URESULT' lucas.prg(1444) Warning W0001 Ambiguous reference 'URESULT' lucas.prg(1450) Warning W0001 Ambiguous reference 'URESULT' lucas.prg(1452) Warning ...
by lucasdebeltran
Tue Mar 31, 2015 11:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 441911
Next

Return to advanced search