db: fix with-book-db combinator in db tutorial

db4
Slava Pestov 2009-09-12 16:05:05 -05:00
parent 420f3561bc
commit 87c7f882ca
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ ARTICLE: "db-lowlevel-tutorial" "Low-level database tutorial"
{ $code <"
USING: db.sqlite db io.files ;
: with-book-db ( quot -- )
"book.db" temp-file <sqlite-db> swap with-db ;"> }
"book.db" temp-file <sqlite-db> swap with-db ; inline"> }
"Now let's create the table manually:"
{ $code <" "create table books
(id integer primary key, title text, author text, date_published timestamp,