Ok, thank you
I installed the cx_Oracle driver also but I have another error:
Traceback (most recent call last):
File "/home/thomas/web2py/gluon/restricted.py", line 62, in
restricted
exec ccode in environment
File "/home/thomas/web2py/applications/test/models/db1.py", line 8,
in <module>
db1.define_table('image', SQLField('title'),
SQLField('file','upload'))
File "/home/thomas/web2py/gluon/sql.py", line 355, in define_table
raise e
DatabaseError: ORA-00904: : invalid identifier
db1.py:
# try something like
#db1=SQLDB("sqlite://db1.db")
#db1=SQLDB("mysql://
root:ro...@127.0.0.1:3306/test")
db1=SQLDB("oracle://system/password@xe")
db1.define_table('image', SQLField('title'),
SQLField('file','upload'))
I didn't found a syntax error.
Thanks,
thomas