dawkot

Results 15 issues of dawkot

>/home/dk/.nimble/pkgs/ormin-0.1.0/ormin/ormin_sqlite.nim(24) prepareStmt >/home/dk/.nimble/pkgs/ormin-0.1.0/ormin/ormin_sqlite.nim(20) dbError >Error: unhandled exception: no such column:  a1.answer [DbError] I have no clue how to interpret this message.

This message gets constantly dumped into the output: > GLib-GObject-CRITICAL **: 22:56:31.627: g_value_get_boxed: assertion 'G_VALUE_HOLDS_BOXED (value)' failed * Nim Compiler Version 1.2.0 [Linux: amd64] * Manjaro Stable

### Example Consider `db` to be a valid connection and `table` to be a valid table ```nim echo "a" discard db.get_value sql "SELECT 1 FROM table WHERE false" echo "b"...

### Example ```nim proc main = var x = 123 proc withClosure = echo x proc withoutClosure = discard let _ = if true: withClosure else: withoutClosure # fine let...

Type Inference

### Example ```nim type Dummie = object iterator `[]`(d: Dummie, a, b: int): int = discard let d = Dummie() for s in d[0, 1]: discard # error here ```...

works_but_needs_test_case