Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Protected Attributes | List of all members
sqlsrv_native_moodle_temptables Class Reference

This class is not specific to the SQL Server Native Driver but rather to the family of Microsoft SQL Servers. More...

Inheritance diagram for sqlsrv_native_moodle_temptables:
moodle_temptables

Public Member Functions

 add_temptable ($tablename)
 Add one temptable to the store. More...
 
 delete_temptable ($tablename)
 Delete one temptable from the store. More...
 
 dispose ()
 Dispose the temptables stuff, checking for wrong situations, informing and recovering from them.
 
 get_correct_name ($tablename)
 Given one tablename (no prefix), return the name of the corresponding temporary table, If the table isn't a "registered" temp table, returns null. More...
 
 get_temptables ()
 Returns all the tablenames (without prefix) existing in the store. More...
 
 is_temptable ($tablename)
 Returns if one table, based in the information present in the store, is a temp table. More...
 
 update_stats ()
 Analyze the data in temporary tables to force statistics collection after bulk data loads. More...
 

Protected Attributes

circular $mdb
 reference, to be able to use DB facilities here if needed
 
prefix $prefix
 to be used for all the DB objects
 
simple $temptables
 array of moodle, not prefixed 'tablename' => DB, final (prefixed) 'tablename'
 

Detailed Description

This class is not specific to the SQL Server Native Driver but rather to the family of Microsoft SQL Servers.

License
http://www.gnu.org/copyleft/gpl.html GNU GPL v2 or later

Member Function Documentation

◆ add_temptable()

sqlsrv_native_moodle_temptables::add_temptable (   $tablename)

Add one temptable to the store.

Overriden because SQLSRV requires to add # for local (session) temporary tables before the prefix.

Given one moodle temptable name (without prefix), add it to the store, with the key being the original moodle name and the value being the real db temptable name already prefixed

Override and use this only if the database requires modification in the table name.

Parameters
string$tablenamename without prefix of the table created as temptable

Reimplemented from moodle_temptables.

◆ delete_temptable()

moodle_temptables::delete_temptable (   $tablename)
inherited

Delete one temptable from the store.

Parameters
string$tablenamename without prefix of the dropped temptable

◆ get_correct_name()

moodle_temptables::get_correct_name (   $tablename)
inherited

Given one tablename (no prefix), return the name of the corresponding temporary table, If the table isn't a "registered" temp table, returns null.

Parameters
string$tablenamename without prefix which corresponding temp tablename needs to know
Return values
mixedDB name of the temp table or null if it isn't a temp table

◆ get_temptables()

moodle_temptables::get_temptables ( )
inherited

Returns all the tablenames (without prefix) existing in the store.

Return values
arraycontaining all the tablenames in the store (tablename both key and value)

◆ is_temptable()

moodle_temptables::is_temptable (   $tablename)
inherited

Returns if one table, based in the information present in the store, is a temp table.

Parameters
string$tablenamename without prefix of the table we are asking about
Return values
booltrue if the table is a temp table (based in the store info), false if not

◆ update_stats()

moodle_temptables::update_stats ( )
inherited

Analyze the data in temporary tables to force statistics collection after bulk data loads.

The database class detects all temporary tables and will automatically analyze all created tables

Return values
void

Reimplemented in pgsql_native_moodle_temptables.


The documentation for this class was generated from the following file: