From: | Raúl Mero Moreira <rmero(at)marzam-online(dot)com> |
---|---|
To: | Felipe Amezquita <felmarla(at)gmail(dot)com> |
Cc: | postgresayuda <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Re: clase conexion php+postgres |
Date: | 2007-02-26 23:16:26 |
Message-ID: | 45E36A4A.9090201@marzam-online.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
correccion era la libreria:
<?php
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
// FUNCION GENERICA PARA CONECTARNOS A POSTGRESQL SERVER
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
function conectarpg()
{
/////////// VARIABLES DE CONECCION
$server = "serv_XXXX";
$puerto = "5432";
$database = "base_XXXX";
$usuario = "root_XXXX";
$clave = "xxxx_XXXX";
/////////// CREA LA CONEXION A POSTGRESQL
$link = pg_connect("host=$server port=$puerto dbname=$database
user=$usuario password=$clave");
/////////// SI EXISTE ALGUN EMITE EL ERROR MEDIANTE UN MENSAJE
if (!$link)
{
print("<script languaje=javascript> alert('Error al conectar al
servidor : $server; en la base de datos : $database'); </script>");
exit;
}
return $link;
}
?>
Felipe Amezquita escribió:
> Que tal lista.
> Estoy trabajando php y quiero conectarme con postgres y ademas manejar
> todo con procedimientos almacenados.
> alguien que me pueda indicar o ayudar con ejemplos.
> Oh que ya tenga la clase conexion para postgres.
> Gracias
>
> --
> Ing Sistemas y Telecomunicaciones
> Luis Felipe Lopez Amezquita
> 3008217523 - 3162589699
Attachment | Content-Type | Size |
---|---|---|
rmero.vcf | text/x-vcard | 488 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | Moises Alberto Lindo Gutarra | 2007-02-26 23:41:27 | Re: clase conexion php+postgres |
Previous Message | Alvaro Herrera | 2007-02-26 23:16:00 | Re: Duda sobre startup_cost y total_cost en plantree |