Moodle  2.2.1
http://www.collinsharper.com
ADODB_sybase_ase Class Reference
Inheritance diagram for ADODB_sybase_ase:
Collaboration diagram for ADODB_sybase_ase:

Public Member Functions

 ADODB_sybase_ase ()
 MetaTables ($ttype=false, $showSchema=false, $mask=false)
 MetaDatabases ()
 MetaColumns ($table, $upper=false)
 getProcedureList ($schema)
 ErrorMsg ()

Data Fields

 $databaseType = "sybase_ase"
 $metaTablesSQL = "SELECT sysobjects.name FROM sysobjects, sysusers WHERE sysobjects.type='U' AND sysobjects.uid = sysusers.uid"
 $metaColumnsSQL = "SELECT syscolumns.name AS field_name, systypes.name AS type, systypes.length AS width FROM sysobjects, syscolumns, systypes WHERE sysobjects.name='%s' AND syscolumns.id = sysobjects.id AND systypes.type=syscolumns.type"
 $metaDatabasesSQL = "SELECT a.name FROM master.dbo.sysdatabases a, master.dbo.syslogins b WHERE a.suid = b.suid and a.name like '%' and a.name != 'tempdb' and a.status3 != 256 order by 1"

Detailed Description

Definition at line 16 of file adodb-sybase_ase.inc.php.


Member Function Documentation

Definition at line 23 of file adodb-sybase_ase.inc.php.

ErrorMsg ( )

Reimplemented from ADODB_sybase.

Definition at line 102 of file adodb-sybase_ase.inc.php.

getProcedureList ( schema)

Definition at line 97 of file adodb-sybase_ase.inc.php.

MetaColumns ( table,
upper = false 
)

Definition at line 74 of file adodb-sybase_ase.inc.php.

Definition at line 57 of file adodb-sybase_ase.inc.php.

MetaTables ( ttype = false,
showSchema = false,
mask = false 
)

Definition at line 28 of file adodb-sybase_ase.inc.php.


Field Documentation

$databaseType = "sybase_ase"

Reimplemented from ADODB_sybase.

Definition at line 17 of file adodb-sybase_ase.inc.php.

$metaColumnsSQL = "SELECT syscolumns.name AS field_name, systypes.name AS type, systypes.length AS width FROM sysobjects, syscolumns, systypes WHERE sysobjects.name='%s' AND syscolumns.id = sysobjects.id AND systypes.type=syscolumns.type"

Reimplemented from ADODB_sybase.

Definition at line 20 of file adodb-sybase_ase.inc.php.

$metaDatabasesSQL = "SELECT a.name FROM master.dbo.sysdatabases a, master.dbo.syslogins b WHERE a.suid = b.suid and a.name like '%' and a.name != 'tempdb' and a.status3 != 256 order by 1"

Definition at line 21 of file adodb-sybase_ase.inc.php.

$metaTablesSQL = "SELECT sysobjects.name FROM sysobjects, sysusers WHERE sysobjects.type='U' AND sysobjects.uid = sysusers.uid"

Reimplemented from ADODB_sybase.

Definition at line 19 of file adodb-sybase_ase.inc.php.


The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations