Re: Pulling data from database

2017-11-02 Thread Derek
You can look at the guide in the docs: https://docs.djangoproject.com/en/1.11/howto/legacy-databases/ But as everyone will tell you; you need to have done a basic tutorial first (official or otherwise*), otherwise all the jargon will be confusing. After that, you can also look at areas such as

Re: Pulling data from database

2017-11-02 Thread Jani Tiainen
Hi, And welcome to world of Django. You should start by reading official tutorial https://docs.djangoproject.com/en/1.11/intro/ If you feel that it's too compact, Django Girls do have much more verbose one https://tutorial.djangogirls.org/en/ On 2.11.2017 6.08, jay seattle wrote: New to D

Pulling data from database

2017-11-02 Thread jay seattle
New to Django, coming from C# and I am totally confused how you pull data from a database. I have a Postgres DB with a table "customer" created, but have NO idea how to connect to it. I have read a bunch of stuff but they all seem to work from the Model creation to database (migration), but if