Hi,
I have oracle database mydb
with 2 schemas test1
and test2
. I connected to test1 but when I used the command line to create model of table customers on schema test1 phalcon model customers
it says ERROR: Could not find driver
. When I used https://127.0.0.1/webtools.php
it lists all tables in the two schemas test1 and test 2 in field table name. And when I choose table customers
to create model it says table customers not exists
.
Note: When I created manually table customers model and fetched it's data the model returns data correctly. So I want to ask is there a problem between oracle and phalcon developer tools
'database' => array(
'adapter' => 'oracle',
"dbname" => "//192.168.1.20:1521/mydb",
"username" => "test1",
"password" => "xxxxxxx",
'charset' => 'AL32UTF8',
'schema' => 'TEST1'
),
I am using phalcon version 2 Thanks