HackerTrans
TopNewTrendsCommentsPastAskShowJobs

groue

no profile record

comments

groue
·5개월 전·discuss
Gentium is a very beautiful font: https://software.sil.org/gentium/
groue
·8개월 전·discuss
You are not your code.
groue
·10개월 전·discuss
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개월 전·discuss
You're welcome :)
groue
·10개월 전·discuss
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.