Thank you Mr. Rao I did what you suggested, but the error persists Eg: COLUMNS "NAME", "QTY", "RATE", "QTY*RATE" ; Taking your example, it does not perform the operation. the columns "NAME", "QTY", "RATE" ...
Not 7-8 FIELD NAME OF 7 - FIELD NAME OF 8 Eg: COLUMNS "NAME", "QTY", "RATE", "QTY*RATE" ; HEADERS "ClientName", "Quantity", "Price", "Amount" Also it is not a good practice to provide ...
... what are you trying to do but having problems/confusion. For this example =============== COLUMNS "ITEM","UPPER(NAME)","QTY","PRICE","QTY * PRICE" ;HEADERS "Item", "Name", "Quantity", "Rate", "Amount" ...
... la lógica para evaluación de expresiones utilizadas mientras se explora ADO y MySQL. Cuando las columnas se definen como "NAME","QTY","QTY*RATE", etc., las expresiones como "QTY*RATE" son internamente traducidas como: oRs:Fields( "QTY" ):Value ...
... * XBrowse: - Enhanced logic for evaluation of expressions used while browing ADO and MySql. When columns are defined as "NAME","QTY","QTY*RATE", etc., expressions like "QTY*RATE" are internally translated as: oRs:Fields( "QTY" ):Value * oRs:Fields( ...
... también puede ser una matriz de nombres de campo/expresiones. - Es posible especificar un encabezado diferente a la expresión especificando "QTY * PRICE AS AMOUNT". El valor de QTY * PRICE se exportará con el encabezado "AMOUNT". - Se formatean los números de texto y decimales. ...
... - cFieldList can also be an array of field names/expressions. - It is possible to sepcify header other than the expression by specifying "QTY * PRICE AS AMOUNT". Value of QTY * PRICE will be exported with the heading "AMOUNT". - Text and decimal numbers are formatted. As ...
... be used for storing binary data like images. b) To create a computed column ( virtual ) specify the field name as formula like: { "amount = qty * price", 'N', 12, 2 }, ... This column will be created as amount DECIMAL( 12, 2 ) AS ( qty * price ), c) To spcify primary key add one more ...