mariadb connect: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server|1.0}} {{Notice|This function is provided by the official MariaDB plugin.}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|mariadb_connect(host_str,..." |
No edit summary |
||
Line 7: | Line 7: | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|host_str| | {{FuncParam|host_str|The MariaDB server to connect to. This can be an IP address or hostname.}} | ||
{{FuncParam|user_str| | {{FuncParam|user_str|The MariaDB user.}} | ||
{{FuncParam|passwd_str| | {{FuncParam|passwd_str|The password for the user.}} | ||
{{FuncParam|db_str | | {{FuncParam|db_str |MariaDB database to use.}} | ||
{{ | {{FuncParamOptional|ssl_key_file|Private key for SSL connections.}} | ||
{{ | {{FuncParamOptional|ssl_cert_file|__EDIT_ME__}} | ||
{{ | {{FuncParamOptional|ssl_ca_file|__EDIT_ME__}} | ||
{{ | {{FuncParamOptional|ssl_ca_path|__EDIT_ME__}} | ||
{{FuncParamOptional|ssl_cipher|__EDIT_ME__}} | {{FuncParamOptional|ssl_cipher|__EDIT_ME__}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Returns an identifier/handle to the new database connection. '''false''' on error.}} | ||
== Example == | == Example == |
Revision as of 10:49, 19 May 2019
Description
__EDIT_ME__
Syntax
mariadb_connect(host_str, user_str, passwd_str, db_str [, ssl_key_file, ssl_cert_file, ssl_ca_file, ssl_ca_path, ssl_cipher])
Parameters
- host_str
The MariaDB server to connect to. This can be an IP address or hostname. - user_str
The MariaDB user. - passwd_str
The password for the user. - db_str
MariaDB database to use. - ssl_key_file (optional)
Private key for SSL connections. - ssl_cert_file (optional)
__EDIT_ME__ - ssl_ca_file (optional)
__EDIT_ME__ - ssl_ca_path (optional)
__EDIT_ME__ - ssl_cipher (optional)
__EDIT_ME__
Return Value
- Returns an identifier/handle to the new database connection. false on error.
Example
__EDIT_ME__
See also
__EDIT_ME__