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
New in version 2.6
| Item | Details |
|---|---|
| App.GetDockBadgeLabel Returns the tile's current badge label. | Mac/iOS |
| App.SetDockBadgeLabel Sets the string to be displayed in the tile's badging area. | Mac/iOS |
| CURL.CloseDebugFile Closes the debug output file. | All |
| CURL.CloseHeaderFile Closes the header output file. | All |
| CURL.CloseInputFile Closes the input file. | All |
| CURL.CloseOutputFile Closes the data output file. | All |
| CURL.CreateDebugOutputFile Creates output file for writing debug messages. | All |
| CURL.CreateHeaderOutputFile Creates output file for writing header text. | All |
| CURL.CreateOutputFile Creates output file for downloading data. | All |
| CURL.FormAddKeyContainer Add a section to a multipart/formdata HTTP POST. | All |
| CURL.FormAddKeyContainerContentType Add a section to a multipart/formdata HTTP POST. | All |
| CURL.FormAddKeyFile Add a section to a multipart/formdata HTTP POST. | All |
| CURL.FormAddKeyFileContentType Add a section to a multipart/formdata HTTP POST. | All |
| CURL.FormAddKeyText Add a section to a multipart/formdata HTTP POST. | All |
| CURL.FormAddKeyTextContentType Add a section to a multipart/formdata HTTP POST. | All |
| CURL.OpenInputFile Opens file for reading data needed for upload, email sending or HTTP Post. | All |
| CURL.SetOptionFileOnlyMode Disables collecting data for Result functions. | All |
| Clipboard.GetText Queries clipboard content as text. | Mac/Win/iOS |
| Clipboard.SetText Sets the text on the clipboard. | Mac/Win/iOS |
| DragDrop.GetText Queries text from the drop. | Mac/Win |
| DragDrop.GetURL Queries URL from the drop. | Mac only |
| FileDialogWatcher.GetLastPath Queries the last path used in open/save dialogs. | Mac/Win |
| FileDialogWatcher.Install Installs the required code to catch file names from open/save dialogs on Mac. | Mac/Win |
| Font.Activate Activates a font inside app or whole computer. | Mac/Win |
| Font.Deactivate Deactivates a font inside app or whole computer. | Mac/Win |
| MouseCursor.Set Sets the mouse cursor. | Mac/Win |
| Notification.Listen Starts listening for a notification. | Mac/Win |
| Notification.Send Sends a notification. | Mac/Win |
| ProgressDialog.GetPositionX Queries the x position of the dialog. | Mac/Win |
| ProgressDialog.GetPositionY Queries the y position of the dialog. | Mac/Win |
| ProgressDialog.GetTopMost Queries whether dialog is top most. | Mac/Win |
| ProgressDialog.SetTopMost Sets whether dialog is top most. | Mac/Win |
| ProgressDialog.Update Redraws the progress dialog. | Mac/Win |
| SQL.Cancel Attempts to cancel the pending result set, or current statement execution. | All |
| SQL.ClientVersion Gets the DBMS client API version number. | All |
| SQL.Close Closes the specified command object. | All |
| SQL.CommandText Gets the command text associated with the command object. | All |
| SQL.CommandType Gets the command type currently associated with the command object. | All |
| SQL.Commit Saves any changes and ends the current transaction. | All |
| SQL.Connect Opens the connection to a data source. | All |
| SQL.Disconnect Disconnects the connection from the database. | All |
| SQL.Execute Executes the current command. | All |
| SQL.FetchFirst Fetches the first row from a result set. | All |
| SQL.FetchLast Fetches the last row from a result set. | All |
| SQL.FetchNext Fetches next row from a result set. | All |
| SQL.FetchPrior Fetches previous row from a result set. | All |
| SQL.FieldCount Returns the number of fields (columns) in a result set. | All |
| SQL.FreeCommand Frees the command and releases all memory associated with it. | All |
| SQL.FreeConnection Call this method if you are done with a connection. | All |
| SQL.GetAutoCommit Checks whether autocommit is enabled or disabled for the current connection. | All |
| SQL.GetCommandOption Gets a string value of a specific command option. | All |
| SQL.GetConnectionOption Gets a string value of a specific connection option. | All |
| SQL.GetFieldAsBoolean Returns field's value as boolean value; converts if needed. | All |
| SQL.GetFieldAsDate Returns field's value as date value; converts if needed. | All |
| SQL.GetFieldAsDateTime Returns field's value as timestamp value.- | All |
| SQL.GetFieldAsFloat Returns field's value as floating point number value; converts if needed. | All |
| SQL.GetFieldAsNumber Returns field's value as integer number value; converts if needed. | All |
| SQL.GetFieldAsText Returns field's value as text value; converts if needed. | All |
| SQL.GetFieldAsTime Returns field's value as time value; converts if needed. | All |
| SQL.GetFieldDataType Returns field data type. | All |
| SQL.GetFieldIsNull Whether the field value is NULL. | All |
| SQL.GetFieldName Returns name of the field. | All |
| SQL.GetFieldOption Gets a string value of a specific field option. | All |
| SQL.GetIsolationLevel Gets the transaction isolation level. | All |
| SQL.GetParamAsBoolean Returns param's value as boolean value; converts if needed. | All |
| SQL.GetParamAsDate Returns param's value as date; converts if needed. | All |
| SQL.GetParamAsDateTime Returns param's value as timestamp value; converts if needed. | All |
| SQL.GetParamAsFloat Returns param's value as floating point number; converts if needed. | All |
| SQL.GetParamAsNumber Returns param's value as integer; converts if needed. | All |
| SQL.GetParamAsText Returns param's value as text; converts if needed. | All |
| SQL.GetParamAsTime Returns param's value as time value; converts if needed. | All |
| SQL.GetParamDataType Returns parameter data type. | All |
| SQL.GetParamIsDefault Checks whether parameter is default value. | All |
| SQL.GetParamIsNull Whether the parameter value is NULL. | All |
| SQL.GetParamName Returns the name of the parameter. | All |
| SQL.NewCommand Creates a new command. | All |
| SQL.NewConnection Initialize a new SAConnection object and returns Connection Reference. | All |
| SQL.Open Opens the specified command object. | All |
| SQL.ParamCount Returns the number of parameters associated with the command object. | All |
| SQL.Prepare Validates and prepares the current command for execution. | All |
| SQL.ResetCommand Clears all DBMS related handles and sturctures but doesn't destroy them (mostly for Unix fork/exec based applications) | All |
| SQL.ResetConnection Clears all DBMS related handles and structures but doesn't destroy them. | All |
| SQL.Rollback Cancels any changes made during the current transaction and ends the transaction. | All |
| SQL.RowsAffected Queries the number of rows affected. | All |
| SQL.ServerVersion The long number of the currently connected server version. | All |
| SQL.ServerVersionString Gets the currently connected DBMS server version string. | All |
| SQL.SetAutoCommit Enables or disables autocommit for the current connection, that is, automatic commit of every SQL command. | All |
| SQL.SetClient Assigns an DBMS client for the connection. | All |
| SQL.SetCommandOption Sets a string value of a specific command option. | All |
| SQL.SetCommandText Sets the command text. | All |
| SQL.SetConnectionOption Sets a string value of a specific connection or command option. | All |
| SQL.SetFieldOption Sets a string value of a specific field option. | All |
| SQL.SetIsolationLevel Sets the transaction isolation level. | All |
| SQL.SetParamAsBoolean Sets parameter's value as bool data. | All |
| SQL.SetParamAsDate Sets parameter's value as Date data. | All |
| SQL.SetParamAsDateTime Sets parameter's value as DateTime data. | All |
| SQL.SetParamAsFloat Sets parameter's value as floating point number. | All |
| SQL.SetParamAsNumber Sets parameter's value as 32-bit integer number. | All |
| SQL.SetParamAsText Sets parameter's value as character string data. | All |
| SQL.SetParamAsTime Sets parameter's value as Time data. | All |
| SQL.SetParamDataType Sets parameter's data type. | All |
| SQL.SetParamDefault Sets the default value for this parameter. | All |
| SQL.SetParamNull Sets parameter's value as null. | All |
| SQL.SetParamUnknown Sets parameter's type as unknown. | All |
| SQL.isAlive Returns the database server connection status for a particular connection object. | All |
| SQL.isConnected Returns the connection state for a particular connection object. | All |
| SQL.isExecuted Whether command was executed. | All |
| SQL.isOpened Tests whether the specified command object is opened. | All |
| SQL.isResultSet Tests whether a result set exists after the command execution. | All |
| Text.DecodeFromURL Decode an URL string. | All |
| Text.EncodeToURL Encode an URL string. | All |
| WebView.PrintPreview Shows the print preview dialog from Internet Explorer. | Win/iOS |
112 functions.
Older Version 2.5 Newer Version 2.7
Feedback: Report problem or ask question.
Links
MBS Xojo tutorial videos