Meet us at at Real World in Orlando, Florida.

All functions   Mac OS X   Windows   Crossplatform   Components   Guides  
New in version: 2.0   2.1   2.2   2.3   2.4   2.5   2.6   2.7   2.8  

New in version 2.6

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

114 functions.

Feedback: Report problem or ask question.




Links
MBS Real Studio Plugins - Pfarrgemeinde St. Arnulf Nickenich