|
|
|
|
|
- Current row in the query
- Query columns
- Using a binary memo
SQLGetMemo (Function) In french: SQLLitMémo Retrieves the content of a Memo column from the query result, for the current row. Attention: This function must be used when browsing the result of a query of type "SQLFetch/SQLGetCol".. For more details, see Types of SQL browse. SQLExec("SELECT NOM, PRENOM, POSTE, PHOTO FROM CLIENT", "REQ1")
SQLFetch("REQ1")
NOM = SQLGetCol("REQ1", 1)
PRENOM = SQLGetCol("REQ1", 2)
POSTE = SQLGetCol("REQ1", 3)
HExtractMemo(SQLGetMemo("REQ1", 4), "Produit.BMP")
SQLClose("REQ1")
SQLExec("SELECT NOM, MORCEAU FROM MUSIQUE", "REQ1")
Sound(SQLGetMemo("REQ1", 2))
Syntax
<Result> = SQLGetMemo(<Query name> , <Column number>)
<Result>: Character string Binary memo. <Query name>: Character string Name of the query created and executed with SQLExec, or executed with SQLExecWDR. <Column number>: Integer Number of the memo column to retrieve. This column corresponds to a query column (and not to a table column). Remarks SQLFetch sets the position on the current row. To read columns other than Memo columns, use SQLGetCol. The binary memo read by SQLGetMemo can be: - Played by Sound if the binary memo is a .WAV file.
- Displayed in an Image control if the binary memo is in BMP format.
- Stored in a file by HExtractMemo.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|