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:
authorMiguel de Icaza <miguel@gnome.org>2004-01-03 01:58:27 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-01-03 01:58:27 +0300
commit0dae6847d58c725018b2247630df3de4def5ce0f (patch)
tree2b78109852e5190a86cdc397f9ccece25d72f060 /web/postgresql
parent1bc189511c1080be04592d1f5fcd55ae7773cdfb (diff)
Small updates to perf doc and postgress
svn path=/trunk/mono/; revision=21605
Diffstat (limited to 'web/postgresql')
-rw-r--r--web/postgresql2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/postgresql b/web/postgresql
index 6e5bb4f2483..cbe6c2f87d8 100644
--- a/web/postgresql
+++ b/web/postgresql
@@ -545,8 +545,8 @@ mono TestExample.exe
"User ID=postgres;" +
"Password=fun2db;";
IDbConnection dbcon;
- dbcon.Open();
dbcon = new NpgsqlConnection(connectionString);
+ dbcon.Open();
IDbCommand dbcmd = dbcon.CreateCommand();
// requires a table to be created named employee
// with columns firstname and lastname