issue_comments
2 rows where issue = 1128139375
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
id ▼ | html_url | issue_url | node_id | user | created_at | updated_at | author_association | body | reactions | issue | performed_via_github_app |
---|---|---|---|---|---|---|---|---|---|---|---|
1033424454 | https://github.com/simonw/sqlite-utils/issues/405#issuecomment-1033424454 | https://api.github.com/repos/simonw/sqlite-utils/issues/405 | IC_kwDOCGYnMM49mM5G | simonw 9599 | 2022-02-09T07:18:25Z | 2022-02-09T07:18:25Z | OWNER | Writing tests against this is always a tiny bit fiddly since the created databases persist across the lifetime of the test run. Using randomly generated names helps. | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | `Database(memory_name="name")` constructor argument 1128139375 | |
1033425512 | https://github.com/simonw/sqlite-utils/issues/405#issuecomment-1033425512 | https://api.github.com/repos/simonw/sqlite-utils/issues/405 | IC_kwDOCGYnMM49mNJo | simonw 9599 | 2022-02-09T07:20:11Z | 2022-02-09T07:20:11Z | OWNER | Datasette's implementation: https://github.com/simonw/datasette/blob/458f03ad3a454d271f47a643f4530bd8b60ddb76/datasette/database.py#L73-L79 ```python if self.memory_name: uri = "file:{}?mode=memory&cache=shared".format(self.memory_name) conn = sqlite3.connect( uri, uri=True, check_same_thread=False, ) ``` | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | `Database(memory_name="name")` constructor argument 1128139375 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [issue] INTEGER REFERENCES [issues]([id]) , [performed_via_github_app] TEXT); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);