-
Notifications
You must be signed in to change notification settings - Fork 1
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dataset: databases for lazy people #48
Comments
With recent improvements, most notably crate/crate#11165, which added the The corresponding SQL DDL statement looks like: CREATE TABLE IF NOT EXISTS "doc"."testdrive" (
"id" TEXT DEFAULT gen_random_text_uuid() NOT NULL,
"name" TEXT,
"age" INTEGER,
"gender" TEXT,
PRIMARY KEY ("id")
); Currently, the schema has to be provided manually, maybe because
Footnotes |
dataset
dataset
Hi again. The dataset library currently does not provide support for SQLAlchemy 2.x, yet. However, the sqlalchemy-cratedb package will not receive any improvements for SQLAlchemy 1.x any longer. We may revisit the library when it has gained corresponding support. Instead, we exercised convenient DWIM-like database access in Python and Shell through the Records library and program now. Records is also powered by SQLAlchemy, and Tablib. |
dataset
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Hi there,
back in a while, I've tried to use the sweet
dataset
package with CrateDB.For exercising it, and to provide a common ground for others to experiment with, I've created the
cratedb-dataset-demo.py
gist.Within this meta issue, all related issues will be tracked which are needed to make the demo program work completely.
With kind regards,
Andreas.
References
gen_random_text_uuid
scalar crate#11165information_schema.key_column_usage
? crate#13102CrateDialect.get_pk_constraint
for CrateDB>=5.1 crate-python#459LIMIT ALL OFFSET 0
crate#13104server_default
column definition option sqlalchemy-cratedb#106lastrowid
and SQLAlchemy'sinserted_primary_key
attributes sqlalchemy-cratedb#94The text was updated successfully, but these errors were encountered: