currentSchema = $this->defaultSchema = strtoupper($config['schema']); } /** * Get the name of the default schema. * * @return string */ public function getDefaultSchema() { return $this->defaultSchema; } /** * Reset to default the current schema. * * @return string */ public function resetCurrentSchema() { $this->setCurrentSchema($this->getDefaultSchema()); } /** * Set the name of the current schema. * * @param $schema * * @return string */ public function setCurrentSchema($schema) { //$this->currentSchema = $schema; $this->statement('SET SCHEMA ?', [strtoupper($schema)]); } /** * Get a schema builder instance for the connection. * * @return \Illuminate\Database\Schema\MySqlBuilder */ public function getSchemaBuilder() { if (is_null($this->schemaGrammar)) { $this->useDefaultSchemaGrammar(); } return new Builder($this); } /** * @return \Illuminate\Database\Grammar */ protected function getDefaultQueryGrammar() { return $this->withTablePrefix(new QueryGrammar()); } /** * Default grammar for specified Schema * * @return \Illuminate\Database\Grammar */ protected function getDefaultSchemaGrammar() { return $this->withTablePrefix(new SchemaGrammar($this->config['driver'] == 'odbc' ? 'i' : 'c')); } /** * Get the default post processor instance. * * @return \Illuminate\Database\Query\Processors\PostgresProcessor */ protected function getDefaultPostProcessor() { if ($this->config['driver'] == 'odbczos') { return new DB2ZOSProcessor(); } return new DB2Processor($this->config['driver'] == 'odbc' ? 'i' : 'c'); } }