fjbogar
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.

Publicaciones

  • Ayuda con dblink

    Hola, les comento, he creado unos dblinks y va todo bien si lo hago desde la pagina pricipal de oracle es decir hago un select * from tabla@dblink y me muestra bien los datos, mi problema es que al hacerlo desde php y con oci no me muestra la pagina, dice que la conexion ha sido reinciada, el codigo que utlizo es el siguiente:

     

    <?php
        include ("conexion.php");//$conexion = oci_connect('bogar', 'bogar', 'localhost/XE');
          $query3 = "select * from  empleados@toy  ";
              $res3= oci_parse ($conexion, $query3);
             $r=oci_execute ($res3);
                
     
     
      while ($row = oci_fetch_array ($res3))
       {
        echo $row[0];
       }
         oci_close($conexion);
         
            ?>