Get results in wide format
オープン
まだ誰も着手していません。
- 主要言語
- JavaScript
- スター
- 13.7k
- フォーク
- 1.1k
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Is there an easy way to call db.exec and get the results in the conventional format:
[
{ "person" : "jerry", "age" : 34 },
{ "person" : "mary", "age": 37 },
{ "person" : "joe", "age" : 63 }
]
I am currently using:
var out = []
var res = db.prepare("SELECT * FROM hello");
while (stmt.step()) out.push(stmt.getAsObject());
But push() can be inefficient. It would be nice to have a shorthand for this.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Start by tracing the db.exec and prepare/step/getAsObject entry points shown in the issue, and inspect how query results are currently assembled. Done means a supported shorthand returns rows in the requested array-of-objects format without requiring the manual loop.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- javascript, sqlite
- 領域
- database
- issue の種類
- 機能追加
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100