123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?php
- if(!defined('entry') || !entry) die('Not a valid page');
-
-
-
- define('MYSQL_TYPES_NUMERIC', 'int real ');
- define('MYSQL_TYPES_DATE', 'datetime timestamp year date time ');
- define('MYSQL_TYPES_STRING', 'string blob ');
-
- class Conexion_Mysql {
-
- var $mbase_datos;
- var $mservidor;
- var $musuario;
- var $mclave;
- var $mid_conexion = 0;
- var $mid_consulta = 0;
- var $merror_numero = 0;
- var $merror = "";
-
-
- function Conexion_Mysql($bd="", $host="localhost", $user="", $pass="") {
- $this->mbase_datos = $bd;
- $this->mservidor = $host;
- $this->musuario = $user;
- $this->mclave = $pass;
-
- if (!$this->conectar()) {
- $mensaje = "
- <h3 class=\"important\">Error establishing a database connection</h3>
- <p>This either means that the username and password information in your <code>config.php</code> file is incorrect or we can't contact the database server at localhost. This could mean your host's database server is down.</p>
- <ul>
- <li>Are you sure you have the correct username and password?</li>
- <li>Are you sure that you have typed the correct hostname?</li>
- <li>Are you sure that the database server is running?</li>
- </ul>";
- die($mensaje);
- }
- }
-
-
- function conectar() {
-
- $this->mid_conexion = @mysql_connect($this->mservidor, $this->musuario, $this->mclave);
- if (!$this->mid_conexion) {
- $this->merror = "No se logr� realizar la conexi�n.";
- return false;
- }
-
- if (!@mysql_select_db($this->mbase_datos, $this->mid_conexion)) {
- $this->merror = "No se puede abrir la base ".$this->mbase_datos ;
- return false;
- }
- return $this->mid_conexion;
- }
-
-
- function ejecutarConsulta($msql = "") {
- if ($msql == "") {
- $this->merror = "No introdujo la sentencia SQL";
- return false;
- }
-
- $this->mid_consulta = mysql_query($msql, $this->mid_conexion);
- if (!$this->mid_consulta) {
- $this->merror_numero = mysql_errno();
- $this->merror = mysql_error()." error";
- return false;
- }
- return $this->mid_consulta;
- }
-
-
-
- function insertarDeFormulario($tabla, $datos) {
-
- if (empty($datos)) {
- $this->merror = "Debes de pasar un arreglo como parametro.";
- return false;
- }
-
- $cols = '(';
- $sqlValues = '(';
-
- foreach ($datos as $llave=>$valor) {
-
- $cols .= "$llave,";
-
- $tipo_col = $this->obtenerTipoCampo($tabla, $llave);
- if (!$tipo_col) return false;
-
-
- if (is_null($valor)) {
- $sqlValues .= "NULL,";
- }
- elseif (substr_count(MYSQL_TYPES_NUMERIC, "$tipo_col ")) {
- $sqlValues .= "$valor,";
- }
- elseif (substr_count(MYSQL_TYPES_DATE, "$tipo_col ")) {
- $valor = $this->formatearFecha($valor, $tipo_col);
- $sqlValues .= "'$valor',";
- }
- elseif (substr_count(MYSQL_TYPES_STRING, "$tipo_col ")) {
- $valor = $this->sql_escape($valor);
- $sqlValues .= "'$valor',";
- }
- }
- $cols = rtrim($cols, ',').')';
- $sqlValues = rtrim($sqlValues, ',').')';
-
-
- $sql = "INSERT INTO $tabla $cols VALUES $sqlValues";
- return $this->ejecutarConsulta($sql);
- }
-
-
-
- function modificarDeFormulario($tabla, $datos, $condicion="") {
-
- if (empty($datos)) {
- $this->merror = "Debes de pasar un arreglo como parametro.";
- return false;
- }
-
- $sql = "UPDATE $tabla SET";
- foreach ($datos as $llave=>$valor) {
- $sql .= " $llave=";
-
- $tipo_col = $this->obtenerTipoCampo($tabla, $llave);
- if (!$tipo_col) return false;
-
-
- if (is_null($valor)) {
- $sql .= "NULL,";
- }
- elseif (substr_count(MYSQL_TYPES_NUMERIC, "$tipo_col ")) {
- $sql .= "$valor,";
- }
- elseif (substr_count(MYSQL_TYPES_DATE, "$tipo_col ")) {
- $valor = $this->formatearFecha($valor, $tipo_col);
- $sql .= "'$valor',";
- }
- elseif (substr_count(MYSQL_TYPES_STRING, "$tipo_col ")) {
- $valor = $this->sql_escape($valor);
- $sql .= "'$valor',";
- }
- }
- $sql = rtrim($sql, ',');
- if (!empty($condicion)) $sql .= " WHERE $condicion";
-
-
- return $this->ejecutarConsulta($sql);
- }
-
-
-
- function obtenerTipoCampo($tabla, $campo) {
-
- $r = mysql_query("SELECT $campo FROM $tabla");
- if (!$r) {
- $this->merror = mysql_error();
- return false;
- }
- $ret = mysql_field_type($r, 0);
- if (!$ret) {
- $this->merror = "No se puede obtener la informacion del campo ".$tabla.$campo.".";
- mysql_free_result($r);
- return false;
- }
- mysql_free_result($r);
- return $ret;
- }
-
-
-
- function formatearFecha($valor) {
- if(!eregi("^.{4}\-.{2}\-.{2}\ .{2}\:.{2}\:.{2}$",$valor)){
- if(eregi("^([0-9]+)$",$valor)){
- $valor = date("Y-m-d H:i:s",$valor);
- }else{
-
- $valor = date("Y-m-d H:i:s",strtotime($valor));
- }
- }
- return $valor;
-
-
- }
-
-
-
- function obtenerRegistro() {
- return mysql_fetch_assoc($this->mid_consulta);
- }
-
-
-
- function contarCampos() {
- return mysql_num_fields($this->mid_consulta);
- }
-
-
-
- function contarRegistros() {
- return @mysql_num_rows($this->mid_consulta);
- }
-
-
-
- function obtenerNombreCampo($numero_campo) {
- return mysql_field_name($this->mid_consulta, $numero_campo);
- }
-
-
-
- function verConsulta() {
- echo "<table border=1>\n";
-
- for ($i = 0; $i < $this->contarCampos(); $i++) {
- echo "<td><b>".$this->obtenerNombreCampo($i)."</b></td>\n";
- }
- echo "</tr>\n";
-
- while ($row = mysql_fetch_row($this->mid_consulta)) {
- echo "<tr> \n";
- for ($i = 0; $i < $this->contarCampos(); $i++) {
- echo "<td>".$row[$i]."</td>\n";
- }
- echo "</tr>\n";
- }
- }
-
-
-
- function cierraConexion() {
- mysql_free_result($this->mid_consulta);
- }
-
- function sql_escape($value) {
- if(get_magic_quotes_gpc()) {
- $value = stripslashes($value);
- }
- if( function_exists("mysql_real_escape_string")) {
- $value = mysql_real_escape_string($value);
- } else {
- $value = addslashes($value);
- }
- return $value;
- }
- }
- ?>
|