i fomerly using postgresql or mysql database. i naver get a problem to fetch data (using assoc type).
becouse of php function that fetch data like pg_fetch_array produce assosiative array with lower case . like this one :
array("lower_field_name"=>"value"))
so i can fetch data : $data["lower_field_name"].
but if i used oracle function to fetch array data, OCIFetchInto produce array data with UPPER CASE FIELD_NAME :
array("UPPER_FIELD_NAME"=>"value").
i define table field name with lower case,
so i want to get field name in lower case
too.
why oracle function set it to UPPER CASE ?.
any one can help me how to set it to
lower case field name, what options ?
i just want to see filed name like what i've defined. if i define filed in lower case, i can fetch array data in lower case .
thanks