Re: Open Sqlite database file directly in django

2018-05-24 Thread Sourabh Jaiswal
Hi Eric, Thank for your reply. I have implemented the table creation using context data as you suggested. And on web page I am using Datatables to create pages. How ever with this approach whole table data is sent to browser while rendering the page. Which is taking time as expected. I am very

Re: Open Sqlite database file directly in django

2018-05-24 Thread Sourabh Jaiswal
Hi Eric, Thank for your reply. I have implemented the table creation using context data as you suggested. And on web page I am using Datatables to create pages. How ever with this approach while table data is sent to browser while rendering the page. Which is taking time as expected. I am very

Re: Open Sqlite database file directly in django

2018-05-24 Thread Vinicius Assef
You can use Django to access Sqlite. On 24 May 2018 at 03:22, Sourabh Jaiswal wrote: > Hi, > > Thanks a Lot for your reply. > > Using standard python lib you are saying that I should send the data from > view to template render using context dictionary.. right? > > But in my case data can be huge

Re: Open Sqlite database file directly in django

2018-05-24 Thread PASCUAL Eric
ubject: Re: Open Sqlite database file directly in django Hi, Thanks a Lot for your reply. Using standard python lib you are saying that I should send the data from view to template render using context dictionary.. right? But in my case data can be huge... Is that a good way to do it? Regards, S

Re: Open Sqlite database file directly in django

2018-05-23 Thread Sourabh Jaiswal
Hi, Thanks a Lot for your reply. Using standard python lib you are saying that I should send the data from view to template render using context dictionary.. right? But in my case data can be huge... Is that a good way to do it? Regards, Sourabh Jaiswal. On Tuesday, May 22, 2018 at 5:55:32 PM

Re: Open Sqlite database file directly in django

2018-05-22 Thread PASCUAL Eric
> Re, > > > But you'll not be able to access the sqlite DB through Django models, since > it will not have the proper schema. > > > Eric > > From: PASCUAL Eric > Sent: Tuesday, May 22, 2018 3:59:35 PM > To: Django users > S

Re: Open Sqlite database file directly in django

2018-05-22 Thread Jimmy Cowden
On Tue, May 22, 2018, 8:25 AM Sourabh Jaiswal wrote: > Hi, > > Is there any way to open sqlite db directly in django. > > I am working on an application for which a back end script creates a > database for every execution. > The database consists of multiple tables and I have to show those tables

Re: Open Sqlite database file directly in django

2018-05-22 Thread Vinicius Assef
Re, > > > But you'll not be able to access the sqlite DB through Django models, since > it will not have the proper schema. > > > Eric > > From: PASCUAL Eric > Sent: Tuesday, May 22, 2018 3:59:35 PM > To: Django users > Subject: Re:

Re: Open Sqlite database file directly in django

2018-05-22 Thread PASCUAL Eric
Re, But you'll not be able to access the sqlite DB through Django models, since it will not have the proper schema. Eric From: PASCUAL Eric Sent: Tuesday, May 22, 2018 3:59:35 PM To: Django users Subject: Re: Open Sqlite database file directly in django

Re: Open Sqlite database file directly in django

2018-05-22 Thread PASCUAL Eric
Hi Jaiswal, You can use the Python sqlite3 standard lib for opening this database and manipulate it, and then display data using views written with Django. Eric From: django-users@googlegroups.com on behalf of Sourabh Jaiswal Sent: Tuesday, May 22, 2018 8:0