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

search for in the

ibase_affected_rows> <Fonctions Firebird/InterBase
Last updated: Fri, 10 Oct 2008

view this page in

ibase_add_user

(PHP 4 >= 4.2.0, PHP 5)

ibase_add_userAjoute un utilisateur à une base de données de sécurité (uniquement pour IB6 ou plus récent)

Description

bool ibase_add_user ( resource $service_handle , string $user_name , string $password [, string $first_name [, string $middle_name [, string $last_name ]]] )

PHP 4 utilise les paramètres server , dba_user_name et dba_user_password au lieu de service_handle .

Avertissement

Cette fonction n'est pas documentée et seule la liste des arguments est disponible.

Valeurs de retour

Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.



add a note add a note User Contributed Notes
ibase_add_user
pabloj
12-Apr-2006 02:10
You can create users on Firebird/Interbase this way:

<?php
   
// attach to the server with proper privileges
   
if (($service = ibase_service_attach('localhost', 'sysdba', 'masterkey')) != FALSE) {
       
// get server version and implementation strings
       
$server_info  = ibase_server_info($service, IBASE_SVC_SERVER_VERSION)
                      .
' / '
                     
. ibase_server_info($service, IBASE_SVC_IMPLEMENTATION);
       
//ibase_service_detach($service);
   
}
    else {
       
$ib_error = ibase_errmsg();
    }
echo
$server_info;

//add a new user with name 'pippo' and password 'pp'
if (($result = ibase_add_user($service, 'pippo', 'pp')) != FALSE) {
        echo
'User created';
       
ibase_service_detach($service);
    }
    else {
       
$ib_error = ibase_errmsg();
       
//detach from server
       
ibase_service_detach($service);
    } 
?>

ibase_affected_rows> <Fonctions Firebird/InterBase
Last updated: Fri, 10 Oct 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites