Re: Building app on already existing set of DB tables

2010-12-22 Thread Ian
On Dec 22, 9:22 am, Vikram wrote: > Scenario: > table v$session contains all the current sessions information and is > under SYS user. My web application should connect as webinfo user that > has read-only access on v$session table, query the data and present it > in webpage. > > Do I write views

Re: Building app on already existing set of DB tables

2010-12-22 Thread bruno desthuilliers
On 22 déc, 17:22, Vikram wrote: > Hi, > > I am working on building an app that reports the data from the already > existing tables in the Oracle DB. These tables are data-dictionary > tables and my application will connect to these tables using read-only > access to SELECT and draw graphs on the w

Re: Building app on already existing set of DB tables

2010-12-22 Thread Fred Chevitarese
I think you can configure your settings to access the database, and after that, you can run this command: python manage.py inspectdb > youtfile.txt Than, you'll have to realocate the models, 'cause django will output all tables in the database like models.py ;) Is that what you want? Hope it he

Building app on already existing set of DB tables

2010-12-22 Thread Vikram
Hi, I am working on building an app that reports the data from the already existing tables in the Oracle DB. These tables are data-dictionary tables and my application will connect to these tables using read-only access to SELECT and draw graphs on the webpage. How do I build my application that q