本文整理汇总了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;
}
示例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;
}
示例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;
}