HackerTrans
トップ新着トレンドコメント過去質問紹介求人

groue

no profile record

コメント

groue
·5 か月前·議論
Gentium is a very beautiful font: https://software.sil.org/gentium/
groue
·8 か月前·議論
You are not your code.
groue
·10 か月前·議論
Yes. GRDB encourages Codable because the user can profit from the code generated by the compiler, and this implies that database values are accessed by column name, on top of the Codable runtime, and those layers have a high cost. When necessary it is possible to access database values by position, and in this case GRDB achieves speed of light (performance nearly identical as raw SQLite).
groue
·10 か月前·議論
You're welcome :)
groue
·10 か月前·議論
Thank you (GRDB author here).

It is not mentioned in the README of the repository, but SQLiteData wraps GRDB to access the database and get notified of database changes (the meat and butter).

GRDB is by itself a solid "toolkit for SQLite databases, with a focus on application development", with both high levels APIs for everyday coding, and expert SQLite features for the demanding developers. Many apps rely on GRDB alone.