Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Morgan <monodanmorg@yahoo.com>2003-02-17 18:03:43 +0300
committerDaniel Morgan <monodanmorg@yahoo.com>2003-02-17 18:03:43 +0300
commit192ac46f0a95908428901bf0bc9d66e47c72a1df (patch)
treea4d32171d67ea7de6eeb56c420131f2337e651e3 /web/postgresql
parentf369737334b5d047ca5702e819b56b6b18c689c3 (diff)
2003-02-17 Daniel Morgan <danmorg@sc.rr.com>
* doc/provider-factory: add new web page about Mono.Data's ProviderFactory * doc/web/commands * doc/web/makefile: add provider-factory web page to build * doc/ado-net * doc/ibmdb2 * doc/postgresql * doc/sqlclient * doc/tdsclient * doc/sybase * doc/mysql * doc/firebird * doc/oracle * doc/oledb * doc/odbc * doc/sqlite: updated web pages svn path=/trunk/mono/; revision=11639
Diffstat (limited to 'web/postgresql')
-rw-r--r--web/postgresql9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/postgresql b/web/postgresql
index ef1bf1e9e72..89e614fa2b4 100644
--- a/web/postgresql
+++ b/web/postgresql
@@ -36,6 +36,13 @@
and libpq.so on Linux.</li>
</ul>
</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
+ do not have Bugzilla user account, it is free
+ and easy to
+ create one <a href="http://bugzilla.ximian.com/createaccount.cgi">here</a>.</li>
+
</ul>
@@ -429,6 +436,7 @@ mono PostgresTest.exe
"Password=fun2db;";
IDbConnection dbcon;
dbcon = new PgConnection(connectionString);
+ dbcon.Open();
IDbCommand dbcmd = dbcon.CreateCommand();
// requires a table to be created named employee
// with columns firstname and lastname
@@ -511,6 +519,7 @@ mono TestExample.exe
"User ID=postgres;" +
"Password=fun2db;";
IDbConnection dbcon;
+ dbcon.Open();
dbcon = new NpgsqlConnection(connectionString);
IDbCommand dbcmd = dbcon.CreateCommand();
// requires a table to be created named employee