35 pers. connectées au site
Manuel Pear
Modules
Modules -- Loading and calling modules
Description
MDB2 follows a modular concept to provide functionality beyond the basic ability to send queries to the database and fetch result sets. Currently the following modules are available:
-
Datatype module (API) - handles datatype abstraction via the MDB2_Datatype_Common class
-
Extended module (API) - provides numerous high-level methods via the MDB2_Extended class
-
Function module (API) - handles SQL function abstraction via the MDB2_Function_Common class
-
Manager module (API) - handles data definition language (DDL) abstraction and schema listing via the MDB2_Manager_Common class
-
Native module (API) - handles RDBMS specific functions via the MDB2_Native_Common class
-
Reverse module (API) - handles schema reverse engineering abstraction via the MDB2_Reverse_Common class
A module is loaded using the
loadModule() method. This method returns the module instance, but also stores the instance in a property. The name of the property is either the lowercased name of the module passed in as the first parameter, or optionally the non null value of the second parameter. The optional third parameter is used to differentiate modules that depend on a specific RDBMS (like the
Datatype module) and those that do not (like the
Extended module). The method can also be used to load custom modules that are installed.
| Avertissement |
|
The third parameter is automatically detected if it is not set. On hosts that have 'safe_mode' enabled automatic detection does however require silenced falls to fopen(). Error handling and error handlers should be configured accordingly.
|
Exemple 39-1. Loading a module
- <?php
- require_once 'MDB2.php';
-
- $dsn = 'pgsql://someuser:apasswd@localhost/thedb';
- $options = array(
- 'debug' => 2,
- 'result_buffering' => false,
- );
-
- $mdb2 =& MDB2::connect($dsn, $options);
- if (PEAR::isError($mdb2)) {
- die($mdb2->getMessage());
- }
-
-
- $mdb2->loadModule('Manager');
- $mdb2->loadModule('Extended', null, false);
-
- ?>
|
Exemple 39-2. Loading a custom module that is RDBMS independent
- <?php
-
- class MDB2_MyModule extends MDB2_Module_Common
- {
- function myMethod()
- {
- $db =& $this->getDBInstance();
- if (PEAR::isError($db)) {
- return $db;
- }
- ...
- }
- }
- ?>
-
- <?php
-
- $mdb2->loadModule('MyModule');
-
-
- ?>
|
Exemple 39-3. Loading a custom module that is RDBMS dependent
- <?php
-
- class MDB2_Driver_MyRDBMSModule_pgsql extends MDB2_Module_Common
- {
- function myRDBMSMethod()
- {
- $db =& $this->getDBInstance();
- if (PEAR::isError($db)) {
- return $db;
- }
- ...
- }
- }
- ?>
-
- <?php
-
- $mdb2->loadModule('MyRDBMSModule');
-
-
- ?>
|
Exemple 39-4. Using a loaded module
- <?php
-
- $mdb2->loadModule('Manager');
- $tables = $mdb2->manager->listTables();
-
- $mdb2->loadModule('Function', 'foo');
- $tables = $mdb2->foo->concat($str1, $str2);
-
-
- ?>
|
On PHP5 users can also rely on overloading to load and call modules.
Exemple 39-5. Using the 'modules' option with PHP5 overloading
- <?php
- require_once 'MDB2.php';
-
- $dsn = 'pgsql://someuser:apasswd@localhost/thedb';
- $options = array(
- 'debug' => 2,
- 'result_buffering' => false,
- );
-
- $mdb2 =& MDB2::connect($dsn, $options);
- if (PEAR::isError($mdb2)) {
- die($mdb2->getMessage());
- }
-
-
- $module_shorthands = $mdb2->getOptions('modules');
-
- $tables = $mdb2->mgListTables();
-
- ?>
|
Exemple 39-6. Calling a method on a loaded module with PHP5 overloading
- <?php
- require_once 'MDB2.php';
-
- $dsn = 'pgsql://someuser:apasswd@localhost/thedb';
- $options = array(
- 'debug' => 2,
- 'result_buffering' => false,
- );
-
- $mdb2 =& MDB2::connect($dsn, $options);
- if (PEAR::isError($mdb2)) {
- die($mdb2->getMessage());
- }
-
-
- $mdb2->loadModule('Manager');
-
- $tables = $mdb2->manager->listTables();
-
- $tables = $mdb2->listTables();
-
- ?>
|
Remonter