Subversion Repositories oidplus

Rev

Rev 1116 | Rev 1152 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1116 Rev 1117
Line 145... Line 145...
145
                if ($ret) $this->countAlreadyFetched++;
145
                if ($ret) $this->countAlreadyFetched++;
146
 
146
 
147
                // Oracle returns $ret['VALUE'] because unquoted column-names are always upper-case
147
                // Oracle returns $ret['VALUE'] because unquoted column-names are always upper-case
148
                // We can't quote every single column throughout the whole program, so we use this workaround...
148
                // We can't quote every single column throughout the whole program, so we use this workaround...
149
                if ($ret) {
149
                if ($ret) {
150
                        foreach ($ret as $name => $val) { /* @phpstan-ignore-line */
150
                        foreach ($ret as $name => $val) {
151
                                $ret->{strtoupper($name)} = $val;
151
                                $ret->{strtoupper($name)} = $val;
152
                                $ret->{strtolower($name)} = $val;
152
                                $ret->{strtolower($name)} = $val;
153
                        }
153
                        }
154
                }
154
                }
155
 
155