當前位置: 首頁>>代碼示例>>PHP>>正文


PHP conexion::conectarpdo方法代碼示例

本文整理匯總了PHP中conexion::conectarpdo方法的典型用法代碼示例。如果您正苦於以下問題:PHP conexion::conectarpdo方法的具體用法?PHP conexion::conectarpdo怎麽用?PHP conexion::conectarpdo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在conexion的用法示例。


在下文中一共展示了conexion::conectarpdo方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: subirCorrespondencia

 function subirCorrespondencia()
 {
     $cone = new conexion();
     $link = $cone->conectarpdo();
     $copiado = false;
     try {
         $link->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
         $link->beginTransaction();
         if ($this->arregloFiles['file_correspondencia']['name'] == "") {
             throw new Exception("El archivo no puede estar vacio");
         }
         $this->procedimiento = 'corres.ft_correspondencia_ime';
         $this->transaccion = 'CO_ARCHCOR_MOD';
         $this->tipo_procedimiento = 'IME';
         $version = $this->arreglo['version'] + 1;
         $this->arreglo['version'] = $version;
         //validar que no sea un arhvio en blanco
         $file_name = $this->getFileName2('file_correspondencia', 'id_correspondencia', '', '_v' . $version);
         //manda como parametro la url completa del archivo
         $this->aParam->addParametro('ruta_archivo', $file_name[2]);
         $this->arreglo['ruta_archivo'] = $file_name[2];
         $this->setParametro('ruta_archivo', 'ruta_archivo', 'varchar');
         //Define los parametros para la funcion
         $this->setParametro('id_correspondencia', 'id_correspondencia', 'integer');
         $this->setParametro('version', 'version', 'integer');
         //Ejecuta la instruccion
         $this->armarConsulta();
         $stmt = $link->prepare($this->consulta);
         $stmt->execute();
         $result = $stmt->fetch(PDO::FETCH_ASSOC);
         $resp_procedimiento = $this->divRespuesta($result['f_intermediario_ime']);
         if ($resp_procedimiento['tipo_respuesta'] == 'ERROR') {
             throw new Exception("Error al ejecutar en la bd", 3);
         }
         if ($resp_procedimiento['tipo_respuesta'] == 'EXITO') {
             //revisamos si ya existe el archivo la verison anterior sera mayor a cero
             $respuesta = $resp_procedimiento['datos'];
             //var_dump($respuesta);
             //cipiamos el nuevo archivo
             $this->setFile('file_correspondencia', 'id_correspondencia', false, 100000, array('doc', 'pdf', 'docx', 'jpg', 'jpeg', 'bmp', 'gif', 'png', 'PDF', 'DOC', 'DOCX', 'xls', 'xlsx', 'XLS', 'XLSX', 'rar'), $folder = '', '_v' . $version);
         }
         $link->commit();
         $this->respuesta = new Mensaje();
         $this->respuesta->setMensaje($resp_procedimiento['tipo_respuesta'], $this->nombre_archivo, $resp_procedimiento['mensaje'], $resp_procedimiento['mensaje_tec'], 'base', $this->procedimiento, $this->transaccion, $this->tipo_procedimiento, $this->consulta);
         $this->respuesta->setDatos($respuesta);
     } catch (Exception $e) {
         $link->rollBack();
         $this->respuesta = new Mensaje();
         if ($e->getCode() == 3) {
             //es un error de un procedimiento almacenado de pxp
             $this->respuesta->setMensaje($resp_procedimiento['tipo_respuesta'], $this->nombre_archivo, $resp_procedimiento['mensaje'], $resp_procedimiento['mensaje_tec'], 'base', $this->procedimiento, $this->transaccion, $this->tipo_procedimiento, $this->consulta);
         } else {
             if ($e->getCode() == 2) {
                 //es un error en bd de una consulta
                 $this->respuesta->setMensaje('ERROR', $this->nombre_archivo, $e->getMessage(), $e->getMessage(), 'modelo', '', '', '', '');
             } else {
                 //es un error lanzado con throw exception
                 throw new Exception($e->getMessage(), 2);
             }
         }
     }
     return $this->respuesta;
 }
開發者ID:kplian,項目名稱:sis_correspondencia,代碼行數:63,代碼來源:MODCorrespondencia.php

示例2: subirFoto

 function subirFoto()
 {
     $cone = new conexion();
     $link = $cone->conectarpdo();
     $copiado = false;
     try {
         $link->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
         $link->beginTransaction();
         if ($this->arregloFiles['archivo']['name'] == "") {
             throw new Exception("El archivo no puede estar vacio");
         }
         $this->procedimiento = 'kaf.ft_activo_fijo_ime';
         $this->transaccion = 'SKA_PHOTO_UPL';
         $this->tipo_procedimiento = 'IME';
         $ext = pathinfo($this->arregloFiles['archivo']['name']);
         $this->arreglo['extension'] = $ext['extension'];
         //validar que no sea un arhvio en blanco
         $file_name = $this->getFileName2('archivo', 'id_activo_fijo', '', false);
         //Define los parametros para la funcion
         $this->setParametro('id_activo_fijo', 'id_activo_fijo', 'integer');
         $this->setParametro('extension', 'extension', 'varchar');
         //manda como parametro la url completa del archivo
         $this->aParam->addParametro('file_name', $file_name[2]);
         $this->arreglo['file_name'] = $file_name[2];
         $this->setParametro('file_name', 'file_name', 'varchar');
         //manda como parametro el folder del arhivo
         $this->aParam->addParametro('folder', $file_name[1]);
         $this->arreglo['folder'] = $file_name[1];
         $this->setParametro('folder', 'folder', 'varchar');
         //manda como parametro el solo el nombre del arhivo  sin extencion
         $this->aParam->addParametro('only_file', $file_name[0]);
         $this->arreglo['only_file'] = $file_name[0];
         $this->setParametro('only_file', 'only_file', 'varchar');
         //Ejecuta la instruccion
         $this->armarConsulta();
         $stmt = $link->prepare($this->consulta);
         $stmt->execute();
         $result = $stmt->fetch(PDO::FETCH_ASSOC);
         $resp_procedimiento = $this->divRespuesta($result['f_intermediario_ime']);
         if ($resp_procedimiento['tipo_respuesta'] == 'ERROR') {
             throw new Exception("Error al ejecutar en la bd", 3);
         }
         if ($resp_procedimiento['tipo_respuesta'] == 'EXITO') {
             //revisamos si ya existe el archivo la verison anterior sera mayor a cero
             $respuesta = $resp_procedimiento['datos'];
             //var_dump($respuesta);
             if ($respuesta['max_version'] != '0' && $respuesta['url_destino'] != '') {
                 $this->copyFile($respuesta['url_origen'], $respuesta['url_destino'], $folder = 'historico');
                 $copiado = true;
             }
             //cipiamos el nuevo archivo
             $this->setFile('archivo', 'id_activo_fijo', false, 100000, array('jpg', 'jpeg', 'bmp', 'gif', 'png'));
         }
         $link->commit();
         $this->respuesta = new Mensaje();
         $this->respuesta->setMensaje($resp_procedimiento['tipo_respuesta'], $this->nombre_archivo, $resp_procedimiento['mensaje'], $resp_procedimiento['mensaje_tec'], 'base', $this->procedimiento, $this->transaccion, $this->tipo_procedimiento, $this->consulta);
         $this->respuesta->setDatos($respuesta);
     } catch (Exception $e) {
         $link->rollBack();
         if ($copiado) {
             $this->copyFile($respuesta['url_origen'], $respuesta['url_destino'], $folder = 'historico', true);
         }
         $this->respuesta = new Mensaje();
         if ($e->getCode() == 3) {
             //es un error de un procedimiento almacenado de pxp
             $this->respuesta->setMensaje($resp_procedimiento['tipo_respuesta'], $this->nombre_archivo, $resp_procedimiento['mensaje'], $resp_procedimiento['mensaje_tec'], 'base', $this->procedimiento, $this->transaccion, $this->tipo_procedimiento, $this->consulta);
         } else {
             if ($e->getCode() == 2) {
                 //es un error en bd de una consulta
                 $this->respuesta->setMensaje('ERROR', $this->nombre_archivo, $e->getMessage(), $e->getMessage(), 'modelo', '', '', '', '');
             } else {
                 //es un error lanzado con throw exception
                 throw new Exception($e->getMessage(), 2);
             }
         }
     }
     return $this->respuesta;
 }
開發者ID:kplian,項目名稱:sis_kactivos_fijos,代碼行數:78,代碼來源:MODActivoFijo.php

示例3: eliminarArchivo

 function eliminarArchivo()
 {
     $cone = new conexion();
     $link = $cone->conectarpdo('', 'segu');
     try {
         $link->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
         $link->beginTransaction();
         $this->procedimiento = 'wf.ft_documento_wf_ime';
         $this->transaccion = 'WF_DOCWELIAR_MOD';
         $this->tipo_procedimiento = 'IME';
         $this->id_usuario = 1;
         //Define los parametros para la funcion
         $this->setParametro('id_documento_wf', 'id_documento_wf', 'integer');
         $this->setParametro('url', 'url', 'varchar');
         //Ejecuta la instruccion
         $this->armarConsulta();
         $stmt = $link->prepare($this->consulta);
         $stmt->execute();
         $result = $stmt->fetch(PDO::FETCH_ASSOC);
         $resp_procedimiento = $this->divRespuesta($result['f_intermediario_ime']);
         if ($resp_procedimiento['tipo_respuesta'] == 'ERROR') {
             throw new Exception("Error al ejecutar en la bd", 3);
         }
         if ($resp_procedimiento['tipo_respuesta'] == 'EXITO') {
             $respuesta = $resp_procedimiento['datos'];
             $this->copyFile($this->objParam->getParametro('url'), $respuesta['url_destino']);
         }
         $link->commit();
         $this->respuesta = new Mensaje();
         $this->respuesta->setMensaje($resp_procedimiento['tipo_respuesta'], $this->nombre_archivo, $resp_procedimiento['mensaje'], $resp_procedimiento['mensaje_tec'], 'base', $this->procedimiento, $this->transaccion, $this->tipo_procedimiento, $this->consulta);
         $this->respuesta->setDatos($respuesta);
     } catch (Exception $e) {
         $link->rollBack();
         $this->respuesta = new Mensaje();
         if ($e->getCode() == 3) {
             //es un error de un procedimiento almacenado de pxp
             $this->respuesta->setMensaje($resp_procedimiento['tipo_respuesta'], $this->nombre_archivo, $resp_procedimiento['mensaje'], $resp_procedimiento['mensaje_tec'], 'base', $this->procedimiento, $this->transaccion, $this->tipo_procedimiento, $this->consulta);
         } else {
             if ($e->getCode() == 2) {
                 //es un error en bd de una consulta
                 $this->respuesta->setMensaje('ERROR', $this->nombre_archivo, $e->getMessage(), $e->getMessage(), 'modelo', '', '', '', '');
             } else {
                 //es un error lanzado con throw exception
                 throw new Exception($e->getMessage(), 2);
             }
         }
     }
     return $this->respuesta;
 }
開發者ID:hcvcastro,項目名稱:pxp,代碼行數:49,代碼來源:MODDocumentoWf.php


注:本文中的conexion::conectarpdo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。