configuring PHP and CodeIgniter to use an Oracle database
Hi All
i'm trying to configure PHP and CodeIgniter to use an Oracle database instead of using mysql 5.3.3. It will be great 开发者_如何学Pythonif anybody can give me step by step solution to do thisnote that i installed oracle database 10g express edition,but when i try to import .sql i get an error that tell me that this file is not supported Thank YouYou cannot import a MySQL database definition into an oracle database. While both speak SQL the table definitions are pretty different (especially regarding auto_increment/serial fields and varchar fields).
You might be able to create the empty tables in your oracle database if Codeigniter supports orable at all and then import your data (only the data) into that database.
精彩评论