Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
SQL.SetParamAsContainer
Sets parameter's value as BLOB value with data from a container.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| SQL | 3.0 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example |
|---|---|---|
| Command | The command reference number gained with SQL.NewCommand. | $Command |
| Param | The parameter name or ID. Pass number for ID, a text with parameter name or the index with # prefix. e.g. "#0" for first parameter. | "1" |
| Value | The new value | $image |
Result
Returns "OK" or error message.
Description
Sets parameter's value as BLOB value with data from a container.Examples
Set parameter with ID = 1 to image
MBS("SQL.SetParamAsText"; $Command; 1; $image)
Set parameter JPEGData with image:
MBS("SQL.SetParamAsText"; $Command; "JPEGData"; $image)
Update BLOB field:
#Create update command to fill blob field:
Set Variable [ $Command; Value:MBS("SQL.NewCommand"; $Connection; "UPDATE 'Test' SET MyBlob=:image WHERE ID=:id") ]
Set Variable [ $result; Value:MBS("SQL.SetParamAsText"; $Command; "id"; 123 ]
Set Variable [ $result; Value:MBS("SQL.SetParamAsContainer"; $Command; "image"; MyTable::MyImage) ]
#Run it
Set Variable [ $result; Value:MBS("SQL.Execute"; $Command) ]
#Cleanup
Set Variable [ $result2; Value:MBS("SQL.Commit"; $Connection) ]
Set Variable [ $result2; Value:MBS("SQL.FreeCommand"; $Command) ]
See also
- SQL.Commit
- SQL.Execute
- SQL.FreeCommand
- SQL.GetFieldAsContainer
- SQL.GetParamAsContainer
- SQL.NewCommand
- SQL.SetParamAsText
Example Databases
Blog Entries
Created 18th August 2014, last changed 22nd November 2018
SQL.SetParamAsBoolean - SQL.SetParamAsDate
Feedback: Report problem or ask question.
Links
MBS FileMaker Plugins