interface IOptions (View source)

This interface defines the contract for database connection options.

Methods

mixed
getOptions(int|null $type = null)

This method is responsible for obtaining all options already defined by the user.

void
setOptions(array|null $options = null)

This method is responsible for set options before connect in database

void
define()

This method is responsible for set options after connect in database, more information's in https://www.php.net/manual/en/ibase.configuration.php

Details

mixed getOptions(int|null $type = null)

This method is responsible for obtaining all options already defined by the user.

Parameters

int|null $type

= null

Return Value

mixed

void setOptions(array|null $options = null)

This method is responsible for set options before connect in database

Parameters

array|null $options

= null

Return Value

void

void define()

This method is responsible for set options after connect in database, more information's in https://www.php.net/manual/en/ibase.configuration.php

Return Value

void