Stories tagged with PostgreSQL - DeveloperSites
1
likes
spam Like Dislike

9 Django Tips for Working with Databases

published 830 days, 12 hours, 23 minutes ago posted by matthewpomarmatthewpomar 839 days, 14 hours, 53 minutes ago
Sunday, December 19, 2021 4:44:10 PM GMT Friday, December 10, 2021 2:14:17 PM GMT
ORMs offer great utility for developers but abstracting access to the database has its costs. Developers who are willing to poke around the database and change some defaults often find that great improvements can be made. (more)
category: Django | clicked: 1 | comment | | source: hakibenita.com
tags: ORM, Performance, PostgreSQL, SQL
1
likes
spam Like Dislike

How to Create an Index in Django Without Downtime

published 830 days, 12 hours, 23 minutes ago posted by matthewpomarmatthewpomar 839 days, 15 hours, 44 minutes ago
Sunday, December 19, 2021 4:44:10 PM GMT Friday, December 10, 2021 1:23:53 PM GMT
In this step-by-step Python tutorial, you'll get a solid understanding of the limitations of Django migrations by tackling a well known problem: creating an index in Django with no downtime. (more)
category: Django | clicked: 1 | comment | | source: realpython.com
tags: ORM, PostgreSQL, SQL
1
likes
spam Like Dislike

How To Prevent SQL Injection Attacks With Python

published 830 days, 12 hours, 23 minutes ago posted by matthewpomarmatthewpomar 839 days, 15 hours, 52 minutes ago
Sunday, December 19, 2021 4:44:10 PM GMT Friday, December 10, 2021 1:15:20 PM GMT
SQL injection attacks are one of the most common web application security threat and one of the easiest to prevent. Web application attackers will surely test your web application for this security vulnerability so you must take steps to ensure that this security hole is plugged, and plugged fast! SQL injection attacks are made possible by allowing non-escaped single or double quote strings to be included in your database's SQL call. This can be done very easily by an attacker by including a partial SQL... (more)
category: Python | clicked: 7 | 1 comment | | source: realpython.com
tags: ORM, PostgreSQL, Security, SQL