-
Updated
Oct 6, 2020 - Python
PostgreSQL
PostgreSQL is a database management system that is object-relational. PostgreSQL originated from the Ingres project at the University of California, Berkeley.
Here are 2,237 public repositories matching this topic...
-
Updated
Oct 6, 2020 - Python
-
Updated
Jun 20, 2020 - Python
-
Updated
Oct 6, 2020 - Python
-
Updated
Oct 5, 2020 - Python
-
Updated
Oct 1, 2020 - Python
-
Updated
Mar 29, 2020 - Python
-
Updated
Oct 7, 2020 - Python
-
Updated
Sep 24, 2020 - Python
-
Updated
Sep 9, 2020 - Python
Example of usage:
users = await User.filter(first_name__ilike="c%r")
I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")
This would be used to match Jeremy, Jorge, Jordan...
-
Updated
Oct 5, 2020 - Python
-
Updated
Oct 7, 2020 - Python
-
Updated
Aug 31, 2020 - Python
-
Updated
May 25, 2020 - Python
-
Updated
Sep 12, 2020 - Python
-
Updated
Oct 1, 2020 - Python
-
Updated
Oct 1, 2020 - Python
-
Updated
Jun 5, 2020 - Python
-
Updated
Oct 7, 2020 - Python
-
Updated
Oct 5, 2020 - Python
-
Updated
Feb 7, 2020 - Python
Include signals
Signals could be a good way to let developers interact with DBBackup's actions. I imagine the following:
- pre_dbbackup & post_dbbackup
- pre_dbrestore & post_dbrestore
- pre_mediabackup & post_mediabackup
- pre_mediarestore & post_mediarestore
I imagine to make a lock or flush something before backup.
-
Updated
Jun 9, 2020 - Python
-
Updated
Sep 29, 2020 - Python
-
Updated
Oct 7, 2020 - Python
Created by Michael Stonebraker
Released July 8, 1996
- Repository
- postgres/postgres
- Website
- www.postgresql.org
- Wikipedia
- Wikipedia
I am using PG server in a certificate pinned environment. In Python / SQLAlchemy, this is the following code needed to connect:
Does Migra support this? I