"SELECT myField FROM ..."thentheresultsetwillcontainthefield'myField'.<br/><br/>Unfortunately,thisisjustthewayMySqlandsomeotherdatabasesdoit.Postgresforexamplereturnsallfieldnamesinlowercase
transparently. That means if you define a derived Record class and define a field called 'myField' you will alwaysaccess it through $record->myField (or $record['myField'], whatever you prefer) no matter whether you'reusingMySqlorPostgresorOracleect.<br/><br/>