Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

In reference to issue #276 on dm-core - untested #87

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion do_sqlite3/ext/do_sqlite3/do_sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ VALUE do_sqlite3_cConnection_dispose(VALUE self) {
}

VALUE do_sqlite3_cConnection_quote_boolean(VALUE self, VALUE value) {
return rb_str_new2(value == Qtrue ? "'t'" : "'f'");
return rb_str_new2(value == Qtrue ? "t" : "f");
}

VALUE do_sqlite3_cConnection_quote_string(VALUE self, VALUE string) {
Expand Down