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

search for in the

Funciones Ovrimos SQL> <Ejemplos
[edit] Last updated: Fri, 07 Jun 2013

view this page in

Uso básico

Ejemplo #1 Conectarse a Ovrimos SQL Server y selecciona de una tabla del sistema

<?php
$conn 
ovrimos_connect("server.domain.com""8001""admin""password");
if (
$conn != 0) {
    echo 
"Conexión ok!";
    
$res ovrimos_exec($conn"select table_id, table_name from sys.tables");
    if (
$res != 0) {
        echo 
"Sentencia ok!";
        
ovrimos_result_all($res);
        
ovrimos_free_result($res);
    }
    
ovrimos_close($conn);
}
?>



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

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