From: | wireless200(at)yahoo(dot)com (wireless) |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: Connection String in ASP.NET application |
Date: | 2003-09-17 13:07:05 |
Message-ID: | 90446ee7.0309170507.47646af8@posting.google.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
roslyn(at)crimsonworks(dot)com(dot)sg ("Roslyn Teo") wrote in message news:<002901c37b7a$e100abd0$5201a8c0(at)rospc>...
> Can anyone kindly enlighten me on how to write a connection string from
> an ASP.NET application to PostgreSQL db without the use of Npgsql or
> other data providers?
You can use odbc but I use npgsql:
using Npgsql;
String connstring = "Server=xx.xx.xx.xx;Port=5432;User
id=user;Password=password;Database=dbname";
NpgsqlConnection conn = new NpgsqlConnection(connstring);
conn.Open();
DataSet ds = new DataSet();
da.Fill(ds,"mydataset");
conn.Close();
You can do all the .net stuff with npgsql. They've done a good job
with it.
Just download the npgsql.dll and add it to your web bin directory and
add a reference in your project.
If you want to use odbc just do some searches on google. There a few
how to articles but it's more complicated than npgsql.
-David
From | Date | Subject | |
---|---|---|---|
Next Message | Harry Broomhall | 2003-09-17 13:54:25 | Schemas, and visibility of tables in MS-Query. |
Previous Message | Noel | 2003-09-17 03:07:41 | Synchronising databases replication |