DB_common::setOption()

DB_common::setOption() -- Sets run-time configuration options for PEAR DB

Áttekintés

integer setOption (string $option, mixed $value)

Leírás

Sets run-time configuration options for PEAR DB.

Paraméterek

string $option

name of the option to set

mixed $value

value to set the option to

Táblázat 35-1.

OptionData TypeDefault ValueDescription
autofree boolean FALSE should results be freed automatically when there are no more rows?
debug integer 0 debug level
persistent boolean FALSE should the connection be persistent?
portability integer DB_PORTABILITY_NONE portability mode constant. These constants are bitwised, so they can be combined using | and removed using ^. See the examples below and the "Intro - Portability" for more information.
seqname_format string %s_seq the sprintf() format string used on sequence names. This format is applied to sequence names passed to createSequence(), nextID() and dropSequence().  
ssl boolean FALSE use ssl to connect?

Visszatérési érték

integer - DB_OK on success or a DB_Error object on failure

Lehetséges hibaértékek

Táblázat 35-2. Lehetséges PEAR_Error visszatérési értékek

Error codeError messageReasonSolution
NULL unknown option The given option does not exist Check $option for typographical errors

Megjegyzés

Ez a függvény nem hívható statikusan.

Példa