PHP Velho Oeste 2024

Funciones de dbx

Tabla de contenidos

  • dbx_close — Cierra una conexión/base de datos abierta
  • dbx_compare — Comparar dos filas con propósitos de ordenación
  • dbx_connect — Abrir una conexión/base de datos
  • dbx_error — Reporta un mensaje de error de la última llamada a la función en el módulo
  • dbx_escape_string — Escapar una cadena para que pueda ser usada de forma segura en una declaración sql
  • dbx_fetch_row — Traer filas de un resultado de una consulta que tuvo la bandera DBX_RESULT_UNBUFFERED establecida
  • dbx_query — Enviar una consulta y traer todos los resultado (si hubo alguno)
  • dbx_sort — Ordenar un resultado de una llamada a dbx_query mediante una función de ordenación personalizada
add a note add a note

User Contributed Notes 5 notes

up
4
carl [at] carlthompson [dot] net
20 years ago
The above benchmark is very misleading. Unfortunately, I found out the hard way by porting my app to ADODB. Most PHP apps are going to be very short-lived therefore startup / setup time is a large factor. This benchmark does not measure that. Just include()ing the main ADODB file added 27ms to my app's startup time! Considering my app took only 16ms to run in total using DBX, the idea of switching to ADODB was DOA before running a single query.

In the end, the total time for my app went from 16ms with DBX to 49ms with ADODB. ADODB's powerful features are obviously not worth that kind of overhead.

Carl Thompson
up
2
bart at mediawave dot nl
19 years ago
Simple function for returning paged result sets.

<?php
// use: pagedQuery($link, $sql, $rows_per_page, $current_page)

function pagedQuery($link, $sql, $nrows = 10, $page = 1) {
   
$handle = dbx_query($link, $sql, DBX_RESULT_UNBUFFERED);
   
$result = new stdClass;
   
$result->link = $this->link;
   
$result->page = $page;
   
$result->data = array();
   
$result->info['name'] = array();
   
$start = ($page - 1) * $nrows;
   
$end = $start + $nrows;
   
$result->rows = 0;
    while (
$row = dbx_fetch_row($handle)) {
       
$result->rows++;
        if ((
$result->rows > $start) && ($result->rows <= $end)) {
           
$result->data[] = $row;           
        }
    }
    if (
$result->data[0]) {
       
$result->cols = count($result->data[0]) / 2;
       
$result->info['name'] = array_slice(array_keys($result->data[0]), $result->cols, $result->cols);
       
$result->lastPage = ceil($result->rows / $nrows);
    }
    return
$result;
}
?>
up
0
rhcf at linux dot ime dot usp dot br
20 years ago
BEWARE!!!

dbx_query allocate all retrieved data in an array on memory. If the query result is big (bigger then the memory_limit on php.ini), the result will be empty. So use dbx wih care.
up
-3
bart at mediawave dot nl
19 years ago
Would like to confirm that dbx is at least three times faster than adodb with my application. However, once loaded, adodb has much more features and probably performs better in some situations then dbx.

One of the nice features that adodb has, is the way you can quickly make a dropdown menu from a query. Here's a similar function that works with a dbx result object:

<?php

// $result is the dbx_query result (It expects two fields)
// $name is the name of the dropdown field
// $selected is the option that should be selected
// $firstrow takes a string like "myvalue:myname"
// $attr can be used to add some extra attributes

function dropDown($result, $name, $selected, $firstRow, $attr) {
   
$s = '<select name="'.$name.'" '.$attr.'>';
    if (
is_string($firstRow))  {
       
$row = explode(':', $firstRow);
       
$s .= '<option value="'.$row[0].'">'.$row[1].'</option>';
    } else
       
$s .= '<option></option>';
    foreach (
$result->data as $row) {
        if (
$row[0] == $selected)
           
$s .= '<option value="'.$row[0].'" selected="selected">'.htmlspecialchars($row[1]).'</option>';
        else
           
$s .= '<option value="'.$row[0].'">'.htmlspecialchars($row[1]).'</option>';
    }
    return
$s.'</select>';
}

?>
up
-3
jlim at natsoft dot com dot my
21 years ago
For some benchmarks of dbx connecting to mysql compared to native mysql api, adodb, and others, see:
http://phplens.com/lens/adodb/
http://php.weblogs.com/2003/02/06#a2336
To Top