Questions tagged [sqlmodel]

Since SQL Model is a library that combines both SQL Alchemy and Pydantic, this tag is intended for only related questions to this library (SQLModel). Please be sure to tag SQL Alchemy and Pydantic related questions with the corresponding tags

SQLModel is a library for interacting with SQL databases from Python code, with Python objects.

It is designed to be intuitive, easy to use, highly compatible, and robust. SQLModel is based on Python type annotations and powered by Pydantic and SQLAlchemy.

171 questions
-1
votes
2 answers

DPI-1047 while connecting to oracle database using python libraries sqlalchemy and oracledb

You are using SqlAlchemy and oracledb to connect to oracle database optionally SqlModel. You may use code samples given in following answer and following snippet, merged below: from sqlalchemy.engine import create_engine import sys import…
Atilla Ozgur
  • 14,339
  • 3
  • 49
  • 69
-1
votes
1 answer

sqlalchemy/sqlmodel: how to speed up this query?

I am having trouble with the following select query with joins. Not sure what could be the issue, it loads quickly in localhost but when i connect to mysql in staging (under its own VPC) from aws lambda function, it can take several seconds…
johojojoj
  • 43
  • 6
1 2 3
11
12