Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
Now that we have a model, we need to be able to put information into it and then get that information back out. That's where queries come in.
New Terms
-
.create()
- creates a new instance all at once -
.select()
- finds records in a table -
.save()
- updates an existing row in the database -
.get()
- finds a single record in a table -
.delete_instance()
- deletes a single record from the table -
.order_by()
- specify how to sort the records -
if __name__ == '__main__'
- a common pattern for making code only run when the script is run and not when it's imported -
db.close()
- not a method we used, but often a good idea. Explicitly closes the connection to the database. -
.update()
- also something we didn't use. Offers a way to update a record without.get()
and.save()
. Example:Student.update(points=student['points']).where(Student.username == student['username']).execute()
Links
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Carson Bartlett
3,574 Points0 Answers
-
jayda hendrickson
3,413 Points2 Answers
-
ishakahmed
11,359 Points2 Answers
-
Kortney Field
14,091 Points2 Answers
-
Hien Ha
1,417 Points1 Answer
-
adam knapp
2,188 Points1 Answer
-
Daniel Benisti
Front End Web Development Techdegree Graduate 22,224 Points1 Answer
-
Stephen Falck
7,558 PointsIn my own blog project im creating posts with title and content fields
Posted by Stephen FalckStephen Falck
7,558 Points0 Answers
-
Olutope Ayorinde
2,875 Points1 Answer
-
Blaine McCarthy
17,030 Points0 Answers
-
PLUS
nicole lumpkin
Courses Plus Student 5,328 Points1 Answer
-
PLUS
Dmitriy Ignatiev
Courses Plus Student 6,236 Points1 Answer
-
rajan lagah
2,539 Points3 Answers
-
Byron Farrow
13,267 Points0 Answers
-
Michal Janek
Front End Web Development Techdegree Graduate 30,654 Points0 Answers
-
Brecht Philips
8,863 Points0 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up