Fixed the function 'oracle_encapsule_fields_with_same_name_to_instructions'.

This commit is contained in:
mdtrooper 2015-05-29 16:48:14 +02:00
parent 2aa7f0994d
commit e4703a6f86
1 changed files with 1 additions and 1 deletions

View File

@ -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 . '"';
}
}