diff --git a/README.md b/README.md index bca2ef8..d063907 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ require "sqlite3" DB.open "sqlite3:./file.db" do |db| # When using the pg driver, use $1, $2, etc. instead of ? - 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