db: fix a couple of typos in docs

db4
Keita Haga 2011-01-15 02:03:20 +09:00
parent 0048670ad7
commit dce56c8f8f
1 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ HELP: rollback-transaction
HELP: sql-command HELP: sql-command
{ $values { $values
{ "sql" string } } { "sql" string } }
{ $description "Executes a SQL string using the databse in the " { $link db-connection } " symbol." } ; { $description "Executes a SQL string using the database in the " { $link db-connection } " symbol." } ;
HELP: sql-query HELP: sql-query
{ $values { $values
@ -290,7 +290,7 @@ ARTICLE: "db-lowlevel-tutorial" "Low-level database tutorial"
"In conclusion, this method of accessing a database is supported, but it is fairly low-level and generally specific to a single database. The " { $vocab-link "db.tuples" } " vocabulary is a good alternative to writing SQL by hand." ; "In conclusion, this method of accessing a database is supported, but it is fairly low-level and generally specific to a single database. The " { $vocab-link "db.tuples" } " vocabulary is a good alternative to writing SQL by hand." ;
ARTICLE: "db-custom-database-combinators" "Custom database combinators" ARTICLE: "db-custom-database-combinators" "Custom database combinators"
"Every database library requires some effort on the programmer's part to initialize and open a database. SQLite uses files on your harddisk, so a simple pathname is all the setup required. With PostgreSQL, you log in to a networked server as a user on a specfic port." $nl "Every database library requires some effort on the programmer's part to initialize and open a database. SQLite uses files on your harddisk, so a simple pathname is all the setup required. With PostgreSQL, you log in to a networked server as a user on a specific port." $nl
"Make a " { $snippet "with-" } " combinator to open and close a database so that resources are not leaked." $nl "Make a " { $snippet "with-" } " combinator to open and close a database so that resources are not leaked." $nl