odbc_tables
Introducción
Capas abstractas
PHP Manual
Objetos de Datos de PHP
Introducción
Instalación/Configuración
Requerimientos
Instalación
Configuración en tiempo de ejecución
Tipos de recursos
Constantes predefinidas
Conexiones y Administración de Conexiones
Transacciones y auto-commits
Sentencias preparadas y procedimientos almacenados
Errores y manejo de errores
Large Objects (LOBs)
PDO
— La clase PDO
PDO::beginTransaction
— Inicia una transacción
PDO::commit
— Realiza un "commit" de una transacción
PDO::__construct
— Crea una instancia de PDO representando una conexión a la base de datos
PDO::errorCode
— Obtiene un SQLSTATE asociado con la última operación en el manejador de la base de datos
PDO::errorInfo
— Obtiene información extendida del error asociado con la última operación del manejador de la base de datos
PDO::exec
— Ejecuta una sentencia SQL y devuelve el número de filas afectadas
PDO::getAttribute
— Devuelve un atributo de la conexión a la base de datos
PDO::getAvailableDrivers
— Return an array of available PDO drivers
PDO::inTransaction
— Checks if inside a transaction
PDO::lastInsertId
— Devuelve el ID de la última fila o secuencia insertada
PDO::prepare
— Prepara una sentencia para su ejecución y devuelve un objeto sentencia
PDO::query
— Ejecuta una sentencia SQL, devolviendo un conjunto de resultados como un objeto PDOStatement
PDO::quote
— Entrecomilla una cadena de caracteres para usarla en una consulta
PDO::rollBack
— Rolls back a transaction
PDO::setAttribute
— Establece un atributo
PDOStatement
— La clase PDOStatement
PDOStatement::bindColumn
— Bind a column to a PHP variable
PDOStatement::bindParam
— Binds a parameter to the specified variable name
PDOStatement::bindValue
— Binds a value to a parameter
PDOStatement::closeCursor
— Closes the cursor, enabling the statement to be executed again.
PDOStatement::columnCount
— Returns the number of columns in the result set
PDOStatement::debugDumpParams
— Dump an SQL prepared command
PDOStatement::errorCode
— Fetch the SQLSTATE associated with the last operation on the statement handle
PDOStatement::errorInfo
— Fetch extended error information associated with the last operation on the statement handle
PDOStatement::execute
— Executes a prepared statement
PDOStatement::fetch
— Obtiene la siguiente fila del conjunto de resultados
PDOStatement::fetchAll
— Returns an array containing all of the result set rows
PDOStatement::fetchColumn
— Returns a single column from the next row of a result set
PDOStatement::fetchObject
— Fetches the next row and returns it as an object.
PDOStatement::getAttribute
— Retrieve a statement attribute
PDOStatement::getColumnMeta
— Returns metadata for a column in a result set
PDOStatement::nextRowset
— Advances to the next rowset in a multi-rowset statement handle
PDOStatement::rowCount
— Returns the number of rows affected by the last SQL statement
PDOStatement::setAttribute
— Set a statement attribute
PDOStatement::setFetchMode
— Set the default fetch mode for this statement
PDOException
— La clase PDOException
Controladores PDO
CUBRID (PDO)
— Funciones de CUBRID (PDO_CUBRID)
MS SQL Server (PDO)
— Microsoft SQL Server and Sybase Functions (PDO_DBLIB)
Firebird/Interbase (PDO)
— Firebird/Interbase Functions (PDO_FIREBIRD)
IBM (PDO)
— IBM Functions (PDO_IBM)
Informix (PDO)
— Informix Functions (PDO_INFORMIX)
MySQL (PDO)
— Funciones de MySQL (PDO_MYSQL)
MS SQL Server (PDO)
— Microsoft SQL Server Functions (PDO_SQLSRV)
Oracle (PDO)
— Oracle Functions (PDO_OCI)
ODBC and DB2 (PDO)
— ODBC and DB2 Functions (PDO_ODBC)
PostgreSQL (PDO)
— Funciones PostgreSQL (PDO_PGSQL)
SQLite (PDO)
— Funciones de SQLite (PDO_SQLITE)
4D (PDO)
— 4D Functions (PDO_4D)
odbc_tables
Introducción
Capas abstractas
PHP Manual