|
Cat Feeder
1.0.0
The Cat feeder project
|
Variables | |
| dict | TARGET |
| list | UNWANTED_ARGUMENTS |
| list | RISKY_KEYWORDS |
| list | KEYWORD_LOGIC_GATES |
| str | DATE_ONLY = '%Y-%m-%d' |
| str | DATE_AND_TIME = '%Y-%m-%d %H:%M:%S' |
| str | CONNECTION_FAILED = "Connection to the database is non-existent, aborting command." |
| str | CURSOR_FAILED = "Cursor to the database is non-existent, aborting command." |
| int | GET_TABLE_SIZE_ERROR = -1 |
| list | SQL_RISKY_DDL_TRIGGER_KEYWORDS |
# +==== BEGIN CatFeeder =================+ # LOGO: # ..............(..../\ # ...............)..(.') # ..............(../..) # ...............\(__)| # Inspired by Joan Stark # source https://www.asciiart.eu/ # animals/cats # /STOP # PROJECT: CatFeeder # FILE: sql_constants.py # CREATION DATE: 11-10-2025 # LAST Modified: 14:52:9 19-12-2025 # DESCRIPTION: # This is the backend server in charge of making the actual website work. # /STOP # COPYRIGHT: (c) Cat Feeder # PURPOSE: File in charge of storing information that is required for the sql library, but is constant. # // AR # +==== END CatFeeder =================+
| str backend.src.libs.sql.sql_constants.CONNECTION_FAILED = "Connection to the database is non-existent, aborting command." |
Definition at line 88 of file sql_constants.py.
| str backend.src.libs.sql.sql_constants.CURSOR_FAILED = "Cursor to the database is non-existent, aborting command." |
Definition at line 89 of file sql_constants.py.
| str backend.src.libs.sql.sql_constants.DATE_AND_TIME = '%Y-%m-%d %H:%M:%S' |
Definition at line 85 of file sql_constants.py.
| str backend.src.libs.sql.sql_constants.DATE_ONLY = '%Y-%m-%d' |
Definition at line 84 of file sql_constants.py.
| int backend.src.libs.sql.sql_constants.GET_TABLE_SIZE_ERROR = -1 |
Definition at line 92 of file sql_constants.py.
| list backend.src.libs.sql.sql_constants.KEYWORD_LOGIC_GATES |
Definition at line 75 of file sql_constants.py.
| list backend.src.libs.sql.sql_constants.RISKY_KEYWORDS |
Definition at line 44 of file sql_constants.py.
| list backend.src.libs.sql.sql_constants.SQL_RISKY_DDL_TRIGGER_KEYWORDS |
Definition at line 95 of file sql_constants.py.
| dict backend.src.libs.sql.sql_constants.TARGET |
Definition at line 29 of file sql_constants.py.
| list backend.src.libs.sql.sql_constants.UNWANTED_ARGUMENTS |
Definition at line 39 of file sql_constants.py.