Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

SQL.SetClient

Assigns an DBMS client for the connection.

Component Version macOS Windows Linux Server iOS SDK
SQL 2.6 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "SQL.SetClient"; Connection; Client )   More

Parameters

Parameter Description Example
Connection The connection reference number gained with SQL.NewConnection. $Connection
Client The name of the database client to use. "SQLite"

Result

Returns "OK" on success.

Description

Assigns an DBMS client for the connection.

You can set a client in Connect method, in this case you don't need to use setClient method. The main destination of this method is to connect to a server with no connection to a database (for example, to check a client availability and version). But if you are calling Connect method with no specified client you have to use setClient method before.

If you are calling setClient method when the connection is set to another client the previous connection will be disconnected and new client will be set.

Pass one of this values: CubeSQL, SQLAnywhere, ODBC, Oracle, SQLServer, Firebird, InterBase, SQLBase, DB2, DuckDB, Informix, Sybase, MySQL, MariaDB, PostgreSQL or SQLite.
Connect to Microsoft Access, FileMaker Server (or Pro), Microsoft Visual FoxPro and others via ODBC.
Be aware that for most database servers, you need to specify client library with SQL.SetConnectionOption first.

You don't need SQL.SetClient when you pass client to SQL.Connect and you should call SQL.SetConnectionOption before those.

Examples

Sets client to be SQLite:

MBS( "SQL.SetClient"; $Connection; "SQLite" )

Sets client to be Oracle:

MBS( "SQL.SetClient"; $Connection; "Oracle" )

See also

Release notes

  • Version 12.3

Example Databases

Blog Entries

This function is free to use.

Created 18th August 2014, last changed 17th June 2022


SQL.SetAutoCommit - SQL.SetCommandOption