Funzione PHP mysqli_select_db ()
Definizione e utilizzo
Il mysqli_select_db() accetta un valore stringa che rappresenta un database esistente e lo rende come database predefinito.
Sintassi
mysqli_select_db($con, name)
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
con(Mandatory) Questo è un oggetto che rappresenta una connessione a MySQL Server. |
2 |
name(Mandatory) Questo è un valore stringa che rappresenta il nome di un database esistente che è necessario impostare come database predefinito. |
Valori restituiti
La funzione mysqli_select_db () di PHP restituisce un valore booleano che è true se l'operazione ha successo e false in caso contrario.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente dimostra l'utilizzo della funzione mysqli_select_db () (in stile procedurale) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Selecting the database
mysqli_query($con, "CREATE DATABASE NewDatabase");
mysqli_select_db($con, "NewDatabase");
//Retrieving the current database name
$res = mysqli_query($con, "SELECT DATABASE()");
while ($row = mysqli_fetch_row($res)) {
print("Current Database: ".$row[0]);
}
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Current Database: newdatabase
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ con> select_db (); Di seguito è riportato l'esempio di questa funzione nello stile orientato agli oggetti $ minus;
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Retrieving the current database name
$res = $con->query("SELECT DATABASE()");
while ($row = $res->fetch_row()) {
print("Initial Database: ".$row[0]."\n");
}
//Selecting the database
$con->query("CREATE DATABASE NewDatabase");
$con->select_db("NewDatabase");
//Retrieving the current database name
$res = $con->query("SELECT DATABASE()");
while ($row = $res->fetch_row()) {
print("Current Database: ".$row[0]);
}
//Closing the connection
$res = $con -> close();
?>
Questo produrrà il seguente risultato:
Initial Database: mydb
Current Database: newdatabase
Esempio
Invece di specificare il database al momento della connessione, puoi anche sceglierlo in seguito utilizzando questa funzione come mostrato di seguito -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password");
//Selecting the database
mysqli_select_db($con, "mydb");
print("Database Selected ..."."\n");
mysqli_query($con, "CREATE TABLE IF NOT EXISTS my_team(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))");
print("Table Created ..."."\n");
//Inserting a records into the my_team table
mysqli_query($con, "insert into my_team values(1, 'Shikhar', 'Dhawan', 'Delhi', 'India')");
mysqli_query($con, "insert into my_team values(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica')");
mysqli_query($con, "insert into my_team values(3, 'Kumara', 'Sangakkara', 'Matale', 'Srilanka')");
mysqli_query($con, "insert into my_team values(4, 'Virat', 'Kohli', 'Delhi', 'India')");
print("Records Inserted ..."."\n");
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Database Selected ...
Table Created ...
Records Inserted ...
Esempio
<?php
$connection_mysql = mysqli_connect("localhost", "root", "password","mydb");
if (mysqli_connect_errno($connection_mysql)){
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$res = mysqli_select_db($connection_mysql,"testdb");
if($res){
echo "Database Selected";
}else{
echo "Error Occurred";
}
mysqli_close($connection_mysql);
?>
Questo produrrà il seguente risultato:
Database Selected