DB_common::provides() -- Checks if the DBMS supports a particular feature
Opis
Checks if a feature is available for the chosen database type.
Parametr
- string
$feature
the feature to check
Tabela 35-1. Possible values are:
| $feature value | Meaning |
|---|
| prepare |
The database does a pre-check of the SQL statment
|
| pconnect |
The database supports persistent connections
|
| transactions |
The database supports transactions
|
| limit |
The database supports LIMITed SELECT statments
|
Zwracana wartość
boolean - TRUE if the feature is supported
Uwagi
Ta funkcja nie może być wywołana
statycznie.
| Ostrzeżenie |
The provided information are only hints. Check the documentation
of your database system for the real supported features.
I.e. MySQL supports transactions, but not for every table type.
|
Przykład
Przykład 35-1. Using provides()
<?php
// Once you have a valid DB object named $db...
if ($db->provides('pconnect')) {
echo "Persistent connections are allowed.\n";
}
?>
|
|