Final Class Yiisoft\Db\Oracle\Quoter
| Inheritance | Yiisoft\ |
|---|
Implements the Oracle Server quoting and unquoting methods.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| quoteSimpleTableName() | Yiisoft\ |
Method Details
| public string quoteSimpleTableName ( string $name ) | ||
| $name | string | |
public function quoteSimpleTableName(string $name): string
{
return str_contains($name, '"') ? $name : '"' . $name . '"';
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.