Source for file mssql.dbschema.php

Documentation is available at mssql.dbschema.php

  1. <?php
  2. /**
  3. @package    jelix
  4. @subpackage db
  5. @author     Laurent Jouanneau
  6. @copyright  2010 Laurent Jouanneau
  7. *
  8. @link        http://www.jelix.org
  9. @licence     http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
  10. */
  11.  
  12. /**
  13.  * 
  14.  * @package    jelix
  15.  * @subpackage db_driver
  16.  */
  17. class mssqlDbTable extends jDbTable {
  18.     protected function _loadColumns({
  19.         throw new Exception ('Not Implemented');
  20.     }
  21.  
  22.     protected function _alterColumn(jDbColumn $oldjDbColumn $new{
  23.         throw new Exception ('Not Implemented');
  24.     }
  25.  
  26.     protected function _addColumn(jDbColumn $new{
  27.         throw new Exception ('Not Implemented');
  28.     }
  29.  
  30.     protected function _loadIndexesAndKeys({
  31.         throw new Exception ('Not Implemented');
  32.     }
  33.  
  34.     protected function _createIndex(jDbIndex $index{
  35.         throw new Exception ('Not Implemented');
  36.     }
  37.  
  38.     protected function _dropIndex(jDbIndex $index{
  39.         throw new Exception ('Not Implemented');
  40.     }
  41.  
  42.     protected function _loadReferences({
  43.         throw new Exception ('Not Implemented');
  44.     }
  45.  
  46.     protected function _createReference(jDbReference $ref{
  47.         throw new Exception ('Not Implemented');
  48.     }
  49.  
  50.     protected function _dropReference(jDbReference $ref{
  51.         throw new Exception ('Not Implemented');
  52.     }
  53.  
  54. }
  55.  
  56. /**
  57.  * 
  58.  * @package    jelix
  59.  * @subpackage db_driver
  60.  */
  61. class mssqlDbSchema extends jDbSchema {
  62.     protected function _createTable($name$columns$primaryKey$attributes array()) {
  63.         throw new Exception ('Not Implemented');
  64.     }
  65.  
  66.     protected function _getTables({
  67.         throw new Exception ('Not Implemented');
  68.     }
  69. }

Documentation generated on Thu, 19 Sep 2013 00:08:40 +0200 by phpDocumentor 1.4.3