-
-
Notifications
You must be signed in to change notification settings - Fork 697
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
Implement new /content.json?sql=... #2111
Comments
To avoid confusion I'll start by having |
I just noticed that this URL: https://latest.datasette.io/fixtures.csv Returns a 500 error right now! It's fine with a |
I implemented datasette/datasette/views/database.py Lines 220 to 221 in 2e40a50
|
* Refs #2111, closes #2110 * New Context dataclass/subclass mechanism, refs #2127 * Define QueryContext and extract get_tables() method, refs #2127 * Fix OPTIONS bug by porting DaatbaseView to be a View subclass * Expose async_view_for_class.view_class for test_routes test * Error/truncated aruments for renderers, closes #2130
Shipped: https://latest.datasette.io/_memory.json?sql=select+sqlite_version() {
"rows": [
{
"sqlite_version()": "3.34.1"
}
],
"columns": [
"sqlite_version()"
],
"ok": true,
"truncated": false
} |
This will be the base that the remaining work builds on top of. Refs:
The text was updated successfully, but these errors were encountered: