Added description for new tool - npdbtest
[mono.git] / web / sqlite
index 35ee305689659cee39c9f51f5ddf9947ac02c723..8c866571c4eca8f2c8d2f89e87849370ba1df891 100755 (executable)
@@ -16,7 +16,7 @@
        library reads and writes directly to and from the database files on disk.</li>\r
 
        <li>SQL Lite can be downloaded 
-       from <a href"http://www.hwaci.com/sw/sqlite/download.html">here</a>.
+       from <a href="http://www.hwaci.com/sw/sqlite/download.html">here</a>.
        binaries exist for Linux and Windows.  sqlite.dll on Windows 
        and sqlite.so on Linux.  The source code is available too.</li>
 
@@ -25,7 +25,7 @@
        <li>Created by Vladimir Vukicevic so he could have a database of
        thumbnail images for mPhoto.  mPhoto is GUI application 
        for cataloging images.  mPhoto runs on Mono 
-       and uses <a href="http:www.go-mono.com/gtk-sharp.html">GTK#</a> for its GUI.</li>
+       and uses <a href="http://www.go-mono.com/gtk-sharp.html">GTK#</a> for its GUI.</li>
 
        <li>Bugs with Mono or the data provider should be reported 
        in Mono's Bugzilla <a href="http://bugzilla.ximian.com/">here</a>.  If you
@@ -82,7 +82,7 @@
     {
        string connectionString = "URI=file:SqliteTest.db";
        IDbConnection dbcon;
-       dbcon = new MySQLConnection(connectionString);
+       dbcon = new SqliteConnection(connectionString);
        dbcon.Open();
        IDbCommand dbcmd = dbcon.CreateCommand();
        // requires a table to be created named employee