DBTree 0.8.7 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News DBTree 0.8.7 (Default branch)
# 1  
Old 07-30-2008
DBTree 0.8.7 (Default branch)

Image DBTree is a cross-platform (both database and operating system) general purpose database query tool. Some of the primary features of DBTree are a tabbed interface which allows you multi-database connectivity and multiple Workbooks per connection. A Workbook is the main query interface and is optimized for productivity and ease of use. DBTree also features automatic session saving and loading upon startup. License: Freeware Changes:
This release includes an improved startup process, a few bugfixes, and some general cleanups.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
MYSQLI_SELECT_DB(3)							 1						       MYSQLI_SELECT_DB(3)

mysqli::select_db - Selects the default database for database queries

       Object oriented style

SYNOPSIS
bool mysqli::select_db (string $dbname) DESCRIPTION
Procedural style bool mysqli_select_db (mysqli $link, string $dbname) Selects the default database to be used when performing queries against the database connection. Note This function should only be used to change the default database for the connection. You can select the default database with 4th parameter in mysqli_connect(3). PARAMETERS
o $ link -Procedural style only: A link identifier returned by mysqli_connect(3) or mysqli_init(3) o $dbname - The database name. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 mysqli::select_db example Object oriented style <?php $mysqli = new mysqli("localhost", "my_user", "my_password", "test"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s ", mysqli_connect_error()); exit(); } /* return name of current default database */ if ($result = $mysqli->query("SELECT DATABASE()")) { $row = $result->fetch_row(); printf("Default database is %s. ", $row[0]); $result->close(); } /* change db to world db */ $mysqli->select_db("world"); /* return name of current default database */ if ($result = $mysqli->query("SELECT DATABASE()")) { $row = $result->fetch_row(); printf("Default database is %s. ", $row[0]); $result->close(); } $mysqli->close(); ?> Procedural style <?php $link = mysqli_connect("localhost", "my_user", "my_password", "test"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s ", mysqli_connect_error()); exit(); } /* return name of current default database */ if ($result = mysqli_query($link, "SELECT DATABASE()")) { $row = mysqli_fetch_row($result); printf("Default database is %s. ", $row[0]); mysqli_free_result($result); } /* change db to world db */ mysqli_select_db($link, "world"); /* return name of current default database */ if ($result = mysqli_query($link, "SELECT DATABASE()")) { $row = mysqli_fetch_row($result); printf("Default database is %s. ", $row[0]); mysqli_free_result($result); } mysqli_close($link); ?> The above examples will output: Default database is test. Default database is world. SEE ALSO
mysqli_connect(3), mysqli_real_connect(3). PHP Documentation Group MYSQLI_SELECT_DB(3)