如何阻止CodeIgniter引用我的表

Okay, this may be silly, but i can't make CI to stop quoting my table. I use this code in my model :

$oracle->select('id',FALSE);
$oracle->from('ms_item');

That code will result Select statement as follow:

SELECT id FROM "ms_item"

The problem is, Oracle can't find the table when it have quotes or double quotes. The CI said that second parameter in select() will remove any quote generated by Query Builder, but i don't know how to remove the quote generated by from(), please help...

Thank you...

For note, i'm using Oracle 11g and oci8_11g.dll

Try writing the table name in upper case.

$oracle->from('MS_ITEM');

When a table is created, unless you quote it, it will be stored as an uppercase table name. When you are quoting it ( as CI wants to do), it's performing a case sensitive match