Fixed the function 'oracle_encapsule_fields_with_same_name_to_instructions'.
This commit is contained in:
parent
2aa7f0994d
commit
e4703a6f86
|
@ -450,7 +450,7 @@ function oracle_encapsule_fields_with_same_name_to_instructions($field) {
|
|||
if ($return[0] !== '"') {
|
||||
// The columns declared without quotes are converted to uppercase in oracle.
|
||||
// A column named asd is equal to asd, ASD or "ASD", but no to "asd".
|
||||
$return = '"' . strtoupper($return) . '"';
|
||||
$return = '"' . $return . '"';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue