I am developing a application in Codeigniter Framework and I have been created a model with name "Surveyor_model" and I am trying to execute query but it is not executing and give a message "table or view does not exist."
I have been create a model in codeigniter with name " Surveyor_model" and I am trying to execute a query with syntax
$this->oracle_db->get('users_surveyor');
But it is showing a query as given below
select * from "users_surveyor"
and showing a error message "Table or view does not exist"
I want to remove double quotation from a query as given below
select * from "users_surveyor"
so please tell me how can I remove double quotation.
And my I am also showing a database config and please see as given below
$dbtns = "(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.9.1.217)(PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = orcl) (SID = orcl)))";
$active_group = 'oracle';
$query_builder = TRUE;
$db['oracle'] = array(
'dsn' => '',
'hostname' => $dbtns,
//'username' => 'igistest',
//'password' => 'igistest',
'username' => 'cwms',
'password' => 'cwms321',
'database' => 'orcl',
'dbdriver' => 'oci8',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);