Funzione PHP mysqli_stmt_send_long_data ()
Definizione e utilizzo
Se una delle colonne della tabella è di tipo TEXT di tipo BLOB, il file mysqli_stmt_send_long_data() viene utilizzata per inviare dati a quella colonna in blocchi.
Non è possibile chiudere connessioni persistenti utilizzando questa funzione.
Sintassi
mysqli_stmt_send_long_data($stmt);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | stmt(Mandatory) Questo è un oggetto che rappresenta un'istruzione preparata. |
2 | param_nr(Mandatory) Si tratta di un valore intero che rappresenta il parametro a cui è necessario associare i dati forniti. |
3 | data(Mandatory) Questo è un valore stringa che rappresenta i dati da inviare. |
Valori restituiti
La funzione PHP mysqli_stmt_send_long_data () restituisce un valore booleano che è vero in caso di successo e falso in caso di fallimento.
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 mostra l'utilizzo della funzione mysqli_stmt_send_long_data () (in stile procedurale) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Creating a table
mysqli_query($con, "CREATE TABLE test(message BLOB)");
print("Table Created \n");
//Inserting data
$stmt = mysqli_prepare($con, "INSERT INTO test values(?)");
//Binding values to the parameter markers
mysqli_stmt_bind_param($stmt, "b", $txt);
$txt = NULL;
$data = "This is sample data";
mysqli_stmt_send_long_data($stmt, 0, $data);
print("Data Inserted");
//Executing the statement
mysqli_stmt_execute($stmt);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Table Created
Data Inserted
Dopo l'esecuzione del programma di cui sopra, il contenuto della tabella di test sarà il seguente:
mysql> select * from test;
+---------------------+
| message |
+---------------------+
| This is sample data |
+---------------------+
1 row in set (0.00 sec)
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> send_long_data (); Di seguito è riportato l'esempio di questa funzione nello stile orientato agli oggetti $ minus;
Supponiamo di avere un file chiamato foo.txt contenente il messaggio Hello, come sei il benvenuto in Tutorialspoint .
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Creating a table
$con -> query("CREATE TABLE test(message BLOB)");
print("Table Created \n");
//Inserting values into the table using prepared statement
$stmt = $con -> prepare("INSERT INTO test values(?)");
//Binding values to the parameter markers
$txt = NULL;
$stmt->bind_param("b", $txt);
$fp = fopen("foo.txt", "r");
while (!feof($fp)) {
$stmt->send_long_data( 0, fread($fp, 8192));
}
print("Data Inserted");
fclose($fp);
//Executing the statement
$stmt->execute();
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created
Data Inserted
Dopo l'esecuzione del programma di cui sopra, il contenuto della tabella di test sarà il seguente:
mysql> select * from test;
+---------------------------------------------+
| message |
+---------------------------------------------+
| Hello how are you welcome to Tutorialspoint |
+---------------------------------------------+
1 row in set (0.00 sec)