Final Class Yiisoft\Db\Oracle\Quoter
| Inheritance | Yiisoft\Db\Oracle\Quoter » Yiisoft\Db\Schema\Quoter |
|---|
Implements the Oracle Server quoting and unquoting methods.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| quoteSimpleTableName() | Yiisoft\Db\Oracle\Quoter |
Method Details
| public string quoteSimpleTableName ( string $name ) | ||
| $name | string | |
public function quoteSimpleTableName(string $name): string
{
return str_contains($name, '"') ? $name : '"' . $name . '"';
}
Signup or Login in order to comment.