Class: Doctrine_Import_Firebird
Source Location: /Doctrine/Import/Firebird.phpClass Doctrine_Import_Firebird
Class Overview
Located in /Doctrine/Import/Firebird.php [line 33] Doctrine_Connection_Module | --Doctrine_Import | --Doctrine_Import_FirebirdAuthor(s):
|
[ Top ]
Inherited Properties, Constants, and Methods
[ Top ]
Method Summary
array | listFunctions() | list all functions in the current database |
mixed | listTableFields() | list all fields in a tables in the current database |
array | listTables() | list all tables in the current database |
array | listTableTriggers() | This function will be called to get all triggers of the current database ($this->conn->getDatabase()) |
array | listTableViews() | list the views in the database that reference a given table |
array | listUsers() | list all users |
array | listViews() | list the views in the database |
[ Top ]
Properties
Methods
listFunctions [line 97]
|
list all functions in the current database
API Tags:
Return: | data array containing all availible functions |
Access: | public |
Redefinition of:
- Doctrine_Import::listFunctions()
- lists all availible database functions
[ Top ]
listTableFields [line 53]
|
list all fields in a tables in the current database
Parameters:string | $table: | name of table that should be used in method |
API Tags:
Return: | data array on success, a MDB2 error on failure |
Access: | public |
[ Top ]
listTables [line 40]
|
list all tables in the current database
Parameters:$database: |
API Tags:
Return: | data array |
Access: | public |
Redefinition of:
- Doctrine_Import::listTables()
- lists tables
[ Top ]
listTableTriggers [line 111]
|
This function will be called to get all triggers of the current database ($this->conn->getDatabase())
Parameters:string | $table: | The name of the table from the previous database to query against. |
API Tags:
Return: | data array containing all triggers for given table |
Access: | public |
Redefinition of:
- Doctrine_Import::listTableTriggers()
- lists table triggers
[ Top ]
listTableViews [line 84]
|
list the views in the database that reference a given table
Parameters:string | $table: | table for which all references views should be found |
API Tags:
Return: | data array containing all views for given table |
Access: | public |
Redefinition of:
- Doctrine_Import::listTableViews()
- lists table views
[ Top ]
listUsers [line 65]
|
list all users
API Tags:
Return: | data array containing all database users |
Access: | public |
Redefinition of:
- Doctrine_Import::listUsers()
- lists database users
[ Top ]
listViews [line 74]
|
list the views in the database
Parameters:$database: |
API Tags:
Return: | data array containing all database views |
Access: | public |
Redefinition of:
- Doctrine_Import::listViews()
- lists database views
[ Top ]