Search found 25 matches: value1

Return to advanced search

GET Method

... is what would be more or less And then in my web application, just like this ... myparameter: = PValue (1) Please call like this: index.prg?name1=value1&name2=value2 your index.prg function Main()   local hPairs :=  AP_Args()     ? ValToChar( ...
by Otto
Thu Apr 02, 2020 12:02 pm
 
Forum: mod_harbour
Topic: GET Method
Replies: 0
Views: 205

Re: New FWH 19.09

The problem doesn't belong to FASTEDIT to get it working (EDIT_GET) I added the following line :aCols[I]:bOnPostEdit := { | o, v | SAVE_VALUE1( oProj1, v, nColNo ), oProj1:Save() } the value is saved to the DBF after celledit -> return I didn't need this with FWH_19.06 but maybe the dialog / brow...
by ukoenig
Tue Oct 15, 2019 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.09
Replies: 36
Views: 5719

Re: What does this syntax mean? hHead := {=>}

From xHarbour's doc: {=>} Literal hash. Syntax    {[<key1>] => [<value1>][,<keyN> => <valueN>]} Arguments <key1> .. <keyN> <key> is one or more key values to initialize the Hash with. Key ...
by hua
Wed Jul 03, 2019 3:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: What does this syntax mean? hHead := {=>}
Replies: 11
Views: 1344

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

... HardCR(<cString>)->cConvertedString HardCR(<cString>)->cConvertedString Hash([<xKey1>,<xValue1>,[<xKeyN>,<xValueN>]])->hHash HB_ACmdLine()-><aArray> HB_ADel(<aArray>,<nElement>,[<lShrink>])->aTarget ...
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: 5706

FWH: MySql/MariaDB: RowSet object

... ... : standard sql &param1, &param2, .. : compatible with other libs In the case of named paratmers the array needs to be a multi-dim { { value1, value2, ..} ... } Option - 4: oRs := oCn:Call( cStoredProc, params, ... ) A RowSet can also be created by calling a Stored Procedure returning ...
by nageswaragunupudi
Thu Jul 21, 2016 11:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19532

Re: Advance SQL-query question

I don't want to calculate the sum om the fields. For each name there is one time a field with parameter1, and I want to show the field in Value1 The functionality is not limited to SUM alone. SUM, AVG, MAX, MIN,STD etc MAX of a single value is the same value. Isn't it? Source of this function ...
by nageswaragunupudi
Sun Apr 26, 2015 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advance SQL-query question
Replies: 8
Views: 1165

Re: Advance SQL-query question

Rao,

What is the query that used for the pivot view?
I don't want to calculate the sum om the fields. For each name there is one time a field with parameter1, and I want to show the field in Value1 for that name.
by Marc Vanzegbroeck
Sun Apr 26, 2015 12:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advance SQL-query question
Replies: 8
Views: 1165

Re: ADO RDD xHarbour

... are working Its translate to WHERE clause and DISTINCT CLAUSE in selects. :lol: We are now taking care of : SCOPES to SELECT WHERE field BETWEEN value1 AND value2 Index clause NEXT translate to TOP n but for ex Oracle its ROWNUM we are checking how to solve these diferences between different ...
by AHF
Wed Mar 25, 2015 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446122

Return-value with Keyboard-Col-change in xBrowse

... nCPos, "Col-position" ) // doesn't work on HORIZONTAL-move IF nCPos = 1 .or. nCpos = 2 oGet1:cText( (2)->KEY1 ) oAsc:SetText( (2)->VALUE1 ) ENDIF IF nCPos = 3 .or. nCpos = 4 oGet1:cText( (2)->KEY2 ) oAsc:SetText( (2)->VALUE2 ) ENDIF IF nCPos = 5 .or. nCpos = 6 oGet1:cText( ...
by ukoenig
Sun Jul 07, 2013 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Return-value with Keyboard-Col-change in xBrowse
Replies: 6
Views: 2417

tDolphin + Progress Bar

... carga aplicando el metodh Save(). Existe alguna fórmula para presentar la progress bar en un Query como INSERT INTO TABLE (field1, field2) VALUES (value1, value2)? Agradeceré mucho las respuestas.
by Leo
Mon Apr 08, 2013 6:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tDolphin + Progress Bar
Replies: 13
Views: 2437

Re: XML viewer

... reading of the XML data. Please create a log file, at the same time that you save the data to the DBF, in example: LogFile( "log.txt", { value1, ..., valueN } ) alias->field1 := value1 etc... so we can see if the same error appears in log.txt
by Antonio Linares
Tue Mar 12, 2013 1:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XML viewer
Replies: 31
Views: 10900

Re: TDolphin - Optimizar Insert

... no mas de 1000 registros a la vez (dependiendo de la tabla) visto desde mysql seria algo asi insert into table (field1, field2, field3) values (value1, value2, value3), (value1, value2, value3), (value1, value2, value3) si te fijas en un solo insert se incluyen 3 registros el metodo insert crea ...
by Daniel Garcia-Gil
Wed Oct 03, 2012 11:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin - Optimizar Insert
Replies: 3
Views: 662

Re: BULK INSERT in MySQL

... statements with multiple VALUES lists to insert several rows at a time. sql = "INSERT INTO your_table (field1, field2) VALUES ('string1', value1),('string2', value2),('string3', value3);" You can also use a free tool like dbf2sql: http://www.tkinformidia.net/uploads/1/2/0/0/12005968/dbf2sql-3.0.zip
by ADutheil
Sun Sep 02, 2012 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BULK INSERT in MySQL
Replies: 4
Views: 937

Re: Hight, Low and Average dates

... like You can see in the screenshot. LOW and AVERAGE is not added. There are allways 2 Values You get. The price-calculation would be : price := ( value1 * price1 ) + ( value2 * price2 ) You dont need to take care of the combination because if value2 = 0, * price2 is also 0. IF cSeason = "HIGHT" ...
by ukoenig
Mon Mar 30, 2009 10:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hight, Low and Average dates
Replies: 11
Views: 2483

Re: Network update problem with timer

... The whole record buffer is written to file after record cursor is "touched". This helps to avoid multiple disk access on: FIELD1 := value1 FIELD2 := value2 ... FIELDn := valuen Use DBCOMMIT() (or move record pointer DBSKIP(), DBGOTO(), etc.) to force write of record buffer. EMG
by Enrico Maria Giordano
Fri Jan 30, 2009 2:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network update problem with timer
Replies: 10
Views: 1193
Next

Return to advanced search