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

search for in the

Fonctions Ovrimos SQL> <Exemples
[edit] Last updated: Fri, 24 May 2013

view this page in

Utilisation simple

Exemple #1 Connexion au serveur Ovrimos SQL Server et sélection d'une table système

<?php
$conn 
ovrimos_connect("server.domain.com""8001""admin""password");
if (
$conn != 0) {
    echo 
"Connexion établie !";
    
$res ovrimos_exec($conn"select table_id, table_name from sys.tables");
    if (
$res != 0) {
        echo 
"Requête effectuée !";
        
ovrimos_result_all($res);
        
ovrimos_free_result($res);
    }
    
ovrimos_close($conn);
}
?>



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

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