Re: [Tutor] Which DB use with standalone desktop app

2017-07-06 Thread Alan Gauld via Tutor
On 06/07/17 18:32, zhenghao li wrote: > 100 records are not a lot, so sqlite is sufficient. Its database engine > is included in python and it doesn't need to be run as a stand-alone > server so that saves you a lot of time for setting things up. If you > have a lots of tables and data say like

Re: [Tutor] Which DB use with standalone desktop app

2017-07-06 Thread zhenghao li
100 records are not a lot, so sqlite is sufficient. Its database engine is included in python and it doesn't need to be run as a stand-alone server so that saves you a lot of time for setting things up. If you have a lots of tables and data say like more than 10k then you might consider

Re: [Tutor] Which DB use with standalone desktop app

2017-07-06 Thread Alan Gauld
Oops, I forgot the list! Blush... On 06/07/17 18:30, Alan Gauld wrote: > On 06/07/17 09:57, Freedom Peacemaker wrote: > >> own but google cant help me. There are some with SQL in name (eg. sqlite3, >> MySql), but there are some other NoSql like MongoDB or Redis. > NoSQL databases are best for

Re: [Tutor] Which DB use with standalone desktop app

2017-07-06 Thread Mats Wichmann
On 07/06/2017 11:25 AM, Zachary Ware wrote: > On Thu, Jul 6, 2017 at 3:57 AM, Freedom Peacemaker > wrote: >> Hi Tutors, >> I am working on standalone desktop app with tkinter GUI (Python3), and i >> dont know which database should i use. I've tried to find solution on my >>

Re: [Tutor] Which DB use with standalone desktop app

2017-07-06 Thread Zachary Ware
On Thu, Jul 6, 2017 at 3:57 AM, Freedom Peacemaker wrote: > Hi Tutors, > I am working on standalone desktop app with tkinter GUI (Python3), and i > dont know which database should i use. I've tried to find solution on my > own but google cant help me. There are some with SQL

[Tutor] Which DB use with standalone desktop app

2017-07-06 Thread Freedom Peacemaker
Hi Tutors, I am working on standalone desktop app with tkinter GUI (Python3), and i dont know which database should i use. I've tried to find solution on my own but google cant help me. There are some with SQL in name (eg. sqlite3, MySql), but there are some other NoSql like MongoDB or Redis.