OciDriver
class OciDriver extends PdoDriver
Supplemental Oracle database driver.
Methods
Initializes connection.
Delimits identifier for use in SQL statement.
Encodes string for use in a LIKE statement.
Injects LIMIT/OFFSET to the SQL query.
Returns list of tables as tuples [(string) name, (bool) view, [(string) fullName]]
Returns metadata for all columns in a table.
Returns metadata for all indexes in a table.
Returns metadata for all foreign keys in a table.
Cheks if driver supports specific property
Details
at line 24
void
connect(string $dsn, string|null $user = null, string|null $password = null, array|null $options = null)
Initializes connection.
at line 31
string|null
detectExceptionClass(PDOException $e)
No description
at line 52
string
delimite(string $name)
Delimits identifier for use in SQL statement.
at line 59
string
formatDateTime(DateTimeInterface $value)
Formats date-time for use in a SQL statement.
at line 65
string
formatDateInterval(DateInterval $value)
Formats date-time interval for use in a SQL statement.
at line 71
string
formatLike(string $value, int $pos)
Encodes string for use in a LIKE statement.
at line 77
void
applyLimit(string $sql, int|null $limit, int|null $offset)
Injects LIMIT/OFFSET to the SQL query.
at line 97
array
getTables()
Returns list of tables as tuples [(string) name, (bool) view, [(string) fullName]]
at line 113
array
getColumns(string $table)
Returns metadata for all columns in a table.
As tuples [(string) name, (string) table, (string) nativetype, (int) size, (bool) nullable, (mixed) default, (bool) autoincrement, (bool) primary, (array) vendor]]
at line 119
array
getIndexes(string $table)
Returns metadata for all indexes in a table.
As tuples [(string) name, (string[]) columns, (bool) unique, (bool) primary]
at line 125
array
getForeignKeys(string $table)
Returns metadata for all foreign keys in a table.
As tuples [(string) name, (string) local, (string) table, (string) foreign]
at line 131
array
getColumnTypes(PDOStatement $statement)
No description
at line 137
bool
isSupported(string $item)
Cheks if driver supports specific property