downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

fbsql_database> <fbsql_data_seek
[edit] Last updated: Fri, 17 May 2013

view this page in

fbsql_database_password

(PHP 4 >= 4.0.6, PHP 5)

fbsql_database_password Imposta o ricerca la password di un database FrontBase.

Descrizione

string fbsql_database_password ( resource $link_identifier [, string $database_password ] )

Restituisce: La password del database identificato dal parametro link_identifier.

fbsql_database_password() imposta e ricerca la password del database corrente. Se il secondo parametro, opzionale (database_password), è stato specificato la funzione imposta, sul server, il valore del parametro come password del database identificato dal parametro link_identifier. Se il link_identifier non è specificato, verrà utilizzata l'ultima connessione aperta. Se nessuna connessione è aperta, la funzione tenterà di aprirne una come se la funzione fbsql_connect() fosse chiamata, e userà quella.

Questa funzione non modifica la password nel database e neppure è in grado ti recuperare la password di un database.

Example #1 Esempio di fbsql_create_clob()

<?php
    $link 
fbsql_pconnect ("localhost""_SYSTEM""secret")
        or die (
"Could not connect");
    
fbsql_database_password($link"secret db password");
    
fbsql_select_db($database$link);
?>

Vedere anche: fbsql_connect(), fbsql_pconnect() e fbsql_select_db().



add a note add a note User Contributed Notes fbsql_database_password - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites