update pague now
PHP 8.5.2 Released!

The Pdo\Dblib class

(PHP 8 >= 8.4.0)

Introduction

A PDO subclass representing a connection using the DBLib PDO driver.

Class synopsis

class Pdo\Dblib extends PDO {
/* Inherited constans */
public const int PDO::PARAM_BOOL = 5 ;
public const int PDO::PARAM_INT = 1 ;
public const int PDO::PARAM_STR = 2 ;
public const int PDO::PARAM_LOB = 3 ;
public const int PDO::PARAM_STMT = 4 ;
public const int PDO::FETCH_NUM ;
public const int PDO::FETCH_OBJ ;
public const int PDO::ATTR_CASE ;
/* Constans */
public const int ATTR_VERSION ;
/* Inherited methods */
public PDO::__construct (
     string $dsn ,
     ? string $username = null ,
     #[\SensitiveParameter] ? string $password = null ,
     ? array $options = null
)
public static PDO::connect (
     string $dsn ,
     ? string $username = null ,
     #[\SensitiveParameter] ? string $password = null ,
     ? array $options = null
): static
public PDO::exec ( string $statement ): int | false
public PDO::query ( string $query , ? int $fetchMode = PDO::FETCH_COLUMN , int $colno ): PDOStatement | false
public PDO::query (
     string $query ,
     ? int $fetchMode = PDO::FETCH_CLASS ,
     string $classname ,
     array $constructorArgs
): PDOStatement | false
public PDO::query ( string $query , ? int $fetchMode = PDO::FETCH_INTO , object $object ): PDOStatement | false
public PDO::setAttribute ( int $attribute , mixed $value ): bool
}
add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top