Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typos #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions Topics/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ file with both APIs as well. Currently both APIs use SQLite backends.
##Opening a Database

There are two ways to open Titanim databases, <tt>Titanium.Database.open</tt>
and <tt>Titanium.Database.openFile</tt>. <tt>open</tt> will create (if necessarY0
and <tt>Titanium.Database.openFile</tt>. <tt>open</tt> will create (if necessary
and open a database in the same directory and schema as WebKit HTML 5 databases.
Use this method if you'd like to use a single database with both APIs.

Expand Down Expand Up @@ -58,7 +58,7 @@ Inserting and retrieving data works in a very similar way:
while (resultSet.isValidRow())
{
var text = "";
for (var i = 0; i &lt; resultSet.fieldCount(); i++)
for (var i = 0; i < resultSet.fieldCount(); i++)
text += resultSet.fieldName(i) + ":"
+ resultSet.field(i) + " ";
alert(text);
Expand Down