Update sqlite doc sample to use TEXT

Ref: #71
This commit is contained in:
Brian J. Cardiff 2017-11-13 10:56:33 -03:00
parent 4ee820a537
commit 28b17b7dba

View file

@ -41,7 +41,7 @@ require "uri"
# require "sqlite3"
#
# DB.open "sqlite3:./file.db" do |db|
# db.exec "create table contacts (name string, age integer)"
# db.exec "create table contacts (name text, age integer)"
# db.exec "insert into contacts values (?, ?)", "John Doe", 30
#
# args = [] of DB::Any