Skip to content
Advertisement

Tag: sql

Snowflake table created with SQLAlchemy requires quotes (“”) to query

I am ingesting data into Snowflake tables using Python and SQLAlchemy. These tables that I have created all require quotations to query both the table name and the column names. For example, select * from “database”.”schema”.”table” where “column” = 2; Will run, while select * from database.schema.table where column = 2; will not run. The difference being the quotes. I

Python – Store cryptography keys in SQL database

Working on a “Password Saver” and will be using the module “cryptography” to encrypt the passwords. I need to save the key you generate from cryptography in the database as well, but I am not sure how you actually do this. Done some google searches myself and it seems to be called a “byte string”? Not really sure what it

Advertisement