| @@ 954-958 (lines=5) @@ | ||
| 951 | } |
|
| 952 | ||
| 953 | if ($quote) { |
|
| 954 | if ($schema && !empty($schemaName)) { |
|
| 955 | if (strstr($table, '.') === false) { |
|
| 956 | return $this->name($schemaName) . '.' . $this->name($table); |
|
| 957 | } |
|
| 958 | } |
|
| 959 | return $this->name($table); |
|
| 960 | } |
|
| 961 | if ($schema && !empty($schemaName)) { |
|
| @@ 961-965 (lines=5) @@ | ||
| 958 | } |
|
| 959 | return $this->name($table); |
|
| 960 | } |
|
| 961 | if ($schema && !empty($schemaName)) { |
|
| 962 | if (strstr($table, '.') === false) { |
|
| 963 | return $schemaName . '.' . $table; |
|
| 964 | } |
|
| 965 | } |
|
| 966 | return $table; |
|
| 967 | } |
|
| 968 | ||