mysql_select_db
mysql_select_db changes the default database on an active connection; the current default can also be queried with the SELECT DATABASE() SQL function.
Syntax
int mysql_select_db(MYSQL * mysql,
const char * db);Parameters
mysql- a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().db- the default database name
Description
Selects a database as default.
Return Value
Returns zero on success, non-zero on failure.
Examples
SQL
MariadDB Connector/C
See Also
This page is: Copyright © 2026 MariaDB. All rights reserved.
Last updated
Was this helpful?

