GRDB Stories

Gwendal Roué
Mar 31, 2016

--

The little things that make the SQLite library GRDB.swift different.

Your database is available right from the debugger:

(lldb) po try Row.fetchAll(db, sql: "SELECT * FROM persons")
▿ 4 elements
▿ [0] : [id:3 name:"Irene" score:820]
▿ [1] : [id:4 name:"Chiara" score:450]
▿ [2] : [id:6 name:"Noam" score:230]
▿ [3] : [id:7 name:"David" score:750]

--

--