Tagged Questions

Npgsql is a .Net Data provider for Postgresql. It allows programs developed in .Net Framework to access a Postgresql server to write and read data.

learn more… | top users | synonyms

4
votes
2answers
841 views

npgsql LINQ creates SQL Server sql syntax

I'm trying to use LINQ with Npgsql 2.0.11 in a .NET v3.5 project. I'm trying my first simple query from a data table, and I've found that the syntax sent to Postgresql is SQL Server syntax, not Pgsql ...
4
votes
1answer
2k views

npgsql Leaking Postgres DB Connections: Way to monitor connections?

Background: I'm moving my application from npgsql v1 to npgsql v2.0.9. After a few minutes of running my application, I get a System.Exception: Timeout while getting a connection from the pool. The ...
3
votes
3answers
68 views

Can I interrupt data reader during reading?

It is possible to stop a running reader? Scenario: I have a table with 100000 data sets CREATE TABLE stock ( uid bigint NOT NULL, name text, quantity integer, x bytea, y bytea ); and a console ...
3
votes
2answers
356 views

Login control in ASP.NET with PostgreSQL

I have a ASP.NET project and PostgreSQL database. In my database, I have table named user and that table has attributes: password and nick. I want use the Login component in my ASP.NET project, but I ...
3
votes
1answer
157 views

NHibernate / Npgsql throws exception during CreateSchema while debugging UnitTest

I have two C# projects, Model and ModelTest. Model consists of ActiveRecord objects (wrapper around Hibernate). In ModelTest I created a simple unit test: [TestClass] public class UnitTest1 { ...
2
votes
1answer
39 views

Connection still idle after close

I've a C# client application that need to checks a table on a Postgres db every 15 minutes. The problem is that I need to install this client into more or less 200 client so, for that I need to close ...
2
votes
2answers
24 views

npgsql string to numeric

This is the code: autoInsert.Parameters.Add(new NpgsqlParameter("price", NpgsqlDbType.Numeric)); autoInsert.Parameters[0].Value = txt_price.Text; con.Open(); ...
2
votes
2answers
96 views

How to generate next Primary Key value

I'm using Visual Studio 2010 PostgreSQL 9.x Npgsql I'm trying to insert data from fields on a C# WinForms app. I just can't figure out how to generate/retrieve the next primary key value on the fly. ...
2
votes
3answers
154 views

Npgsql does not commit transaction after failed command

I'm using Npgsql 2.0.11 under .NET 4.0 to modify a PostgreSQL 9.0 database. The program makes many modifications to the database, all within a single transaction. Just before committing, I run SELECT ...
2
votes
1answer
361 views

ODBC or NpgSQL for ASP.NET using PostgreSQL

I have project in ASP.NET with postgreSQL database. I do not know what of connection type is better. On one side I in ODBC we have Server Explorer(drag and drop gridview) and on the other side it is ...
2
votes
3answers
286 views

NHibernate Postgresql DateTime to Time Conversion

I'm using Fluent NHibernate to configure my mappings everything works when reading data but when trying to insert or update records that have a Postgresql type of Time I get the error message ...
2
votes
2answers
273 views

PLINQ on ConcurrentQueue isn't multithreading

I have the following PLINQ statement in a C# program: foreach (ArrestRecord arrest in from row in arrestQueue.AsParallel() select row) { Geocoder ...
2
votes
3answers
928 views

How to add custom DB provider to be accesible in Visual Studio?

I wanted to work with custom DB provider in Visual Studio. I need it to use Entity Framework. For example, I downloaded NpgSQL, registered them in GAC: gacutil -i c:\temp\npgsql.dll gacutil -i ...
2
votes
2answers
339 views

nhibernate, postgresql and datetime.maxvalue

I got a application where I use DateTime.MaxValue to indicate that a entry have not been deleted yet. The problem is that PostgreSQL (or npgsql or nhibernate) rounds 9999-12-31 23:59:59.999999 to ...
1
vote
1answer
66 views

MultipleActiveResultSets for postgresql and ado.net entity data model

Im using visual studio, postgresql database and ado.net entity data model. In the connectionstring, Im unable set MultipleActiveResultSets=True. Usually when I connect to sql server with ...
1
vote
1answer
148 views

MVC3 with Npgsql and Entity Framework and .Net Framework 4

Well I would like to know if NpgSQL supports .NET framework 4 with EntityFramework, as I tried to use it with framework 4 and Microsoft.Data.Entity.CTP (code first approach) in my MVC3 application and ...
1
vote
2answers
161 views

MVC3 database access using existing Postgres database

I have an application based on 3 tier architecture with postgres database(npgsql) having more than 400 stored procedures, And now i want to develop the same application using MVC3 Framework. I would ...
1
vote
2answers
75 views

Why does my successfully-read Npgsql data disappear?

I have the following code shape. It seems that I'm misunderstanding the C# method return values. How is it possible that a "full" enumerator gets returned as an empty one? class ThingDoer { ...
1
vote
1answer
439 views

Postgres bytea column is returning string (char array) instead of byte array

I have been using C# to write a concrete provider implementation for our product for different databases. W/out getting into details, one of the columns is of byte array type (bytea in postgres - due ...
1
vote
1answer
253 views

Dapper: can I use parameters for anything?

I am writing some code that will prepare my database for my application. In the code there are some repetitive SQL statements when I am creating a table, and I want to hide them in some methods (there ...
1
vote
2answers
238 views

NHibernate ISessionFactory.OpenSession() does not open a database connection

I have NHibernate configured with Fluent NNibernate connecting to a PostgreSQL database. I have a worker class that takes an ISessionFactory as a constructor parameter and consumes messages from a ...
1
vote
2answers
318 views

How to pass parameter to sql 'in' statement?

I want to create this query: select * from products where number in ('123', '234', '456'); but I can't find any example of achiving this with Npgsql and NpgsqlParameter. I tried like this: ...
1
vote
2answers
349 views

C# / Postgres / FluentNHibernate : configuring npgsql throws NotSupportedException

Sometimes I really start wondering what's going on in my sourcecode: I'm trying to connect to PostGres 9.0 using npgsql 2.0.11.0, which I'm damn sure I already did, but right now, my program throws a ...
1
vote
1answer
255 views

What is the Date type in npgsql?

I am using postgreSQL database. I need to add "Date" parametres with SQL query. What do I have to write where I wrote in the code "XXX" Here is the source code: NpgsqlCommand RupCmd = new ...
1
vote
1answer
216 views

PSQL = fast, remote sql = v.slow

Okay, I appreciate that the question is a tad vague, but after a day of googling, I'm getting nowhere, any help will be appreciated, and I'm willing to try anything. The issue is that we have a ...
1
vote
2answers
173 views

How to delete a row in a Table in Npgsql?

I'm using this code to delete a row in a table, but it's not working. Do I make a mistake or miss out something? using System; using System.Collections.Generic; using System.ComponentModel; using ...
1
vote
3answers
292 views

PostgreSQL's .NET provider runs slow as compared to the old ODBC provider

Why is it that the NPGSQL .NET Data Provider is slow when compared with the ODBC Provider? I have not tried NPGSQL 2.0 but I did worked with NPGSQL 1.0. It was very slow. What are your experiences ...
1
vote
2answers
325 views

How to stop NpgsqlDataReader from blocking?

Running the following code against a large PostgreSQL table, the NpgsqlDataReader object blocks until all data is fetched. NpgsqlCommand cmd = new NpgsqlCommand(strQuery, _conn); NpgsqlDataReader ...
1
vote
1answer
182 views

NPGSQL seems to have a rather large bug?

this is a weird one, when I run the following code all rows are returned from the db. Imagaine what would happen if this was an update or delete. Dim cmd As New NpgsqlCommand cmd.Connection ...
1
vote
1answer
444 views

How to solve ProviderManifestToken=“8.3.7” and Npgsql ProviderManifestToken=“8.1.3” conflict?

I'm trying to connect to my PostgreSQL database using Entity Framework. Unfortunately after generating a model using EdmGen (or EdmGen2) in my SSDL file ProviderManifestToken is set to 8.3.7 when in ...
1
vote
2answers
2k views

NpgSQL insert file path containing backslashes “\\”

I am trying to create a record containing the path to a file. The insertion is done into a Postgres database where UTF8 is enabled, using the NpqSQL driver. My table definition: CREATE TABLE images ...
1
vote
1answer
353 views

Unit Test For NpgsqlCommand With Rhino Mocks

My unit test keeps getting the following error: "System.InvalidOperationException: The Connection is not open." The Test [TestFixture] public class Test { [Test] public void Test1() { ...
1
vote
2answers
731 views

Npgsql pass parameters by name to a stored function

I'm working with code I'm converting to Pgsql working with .NET. I want to call a stored function that has several parameters, but I'd like to bind the parameters by name, like so: NpgsqlCommand ...
1
vote
1answer
509 views

NpgSQLdataReader GetOrdinal throwing exceptions.. any way around?

I built a wrapper around NpgSQL for a bunch of the methods I usually use in my projects' DAL. Two of them, I usually use to fill DTOs straight from a DataReader. Usually in a fill helper method, i'll ...
1
vote
3answers
396 views

Using npgsql with SSIS

I am using npgsql as the ADO.NET provider in SSIS to connect to Postgres and create some workflows. I am able to connect to postgres but am unable to use the "Table or view" data access mode to list ...
1
vote
3answers
2k views

Using npgsql to call a function that takes character as parameter

I am trying to use Npgsql to invoke a function (stored procedure) that takes a CHARACTER as parameter, but it doesn't work. If I declare the same function without parameters, or with an INTEGER ...
1
vote
2answers
386 views

Npgsql reader type cast error (was: mono does not serialize complex types well)

Am I right that serializing complex types is not implemented in Mono 2.4.2 yet, or have I made a mistake? When I call my remote function, I get an error message: Cannot cast from source type to ...
1
vote
1answer
432 views

How to map(NHibernate) a specified PostgreSql type?

I have a PK (character (10)), that is mapped like that: The load works fine with npgsql 1.0, the sql generated with loadbyid is : SELECT city0_."IDCity" as IDMu1_92_0_ FROM "tblCity" ...
0
votes
1answer
27 views

Get database list in Npgsql

How to get a list of all available PostgreSQL databases on user's computer using Npgsql in C#?
0
votes
1answer
31 views

How to update table with BindingSource?

I have datagridview with datasource from BindingSource, after editing this table I need to update it But its not updating. I am using NpgsqlDataAdapter, to update it, but it shows me an error: "Unable ...
0
votes
1answer
21 views

How to provide Npgsql with a custom data type as a parameter?

I want to pass an array of key-value pairs as an argument to a PostgreSQL function using Npgsql. I have the following type defined: drop type if exists key_value_pair create type key_value_pair as ( ...
0
votes
1answer
47 views

How to get Npgsql working with EF4?

hey I know it's an old question but I'm a little stuck trying to even get Npgsql to work with EF4 at all! I can't seem to register the provider wherever it needs to go in order for it to show up in ...
0
votes
1answer
94 views

Npgsql strange exception

This is an example given in the manual. When I try the same, i get umpteen exceptions. What is the mistake in this. using(NpgsqlConnection conn = new NpgsqlConnection("connstring")) { ...
0
votes
2answers
69 views

Why does PostgreSQL treat a value in my query as if it's a column name?

I'm using Npgsql with C# to communicate with my PostgreSQL database. All names used in my database are mixed case, so in the query I make sure I use double quotes around each name. Here is how I am ...
0
votes
0answers
70 views

updating object with nhibernate throws InvalidCastException (but saving it doesn't)

I'm facing a apparently very strange problem (I must be doing something wrong, just can't find my errors!). When certain POCOs are saved into the database, nothing happens. When the same POCOs have ...
0
votes
1answer
75 views

inserting images on bytea column

i am using (i am obligated to use) npgsql driver to insert images on bytea column in postgresql db using vb.net code. after inserting the first one successfully, i try to insert the second one it ...
0
votes
2answers
66 views

how to add xml data to postgresql database

soap response below contains table of products, approx 5000 rows. Table of products (below) is nearly similar structure as xml data. Products table needs to be updated from xml data in every hour. ...
0
votes
0answers
45 views

failed to set pgpassfile in wpf

I m trying to set pgpassfile trough wpf. But it's always failed and said "Cannot start process because a file name has not been provided." I've tried the arguments in command prompt and it has worked ...
0
votes
1answer
132 views

NpgSql Fluent NHibernate - why in debug throws exception, but when ran without debug no errors

This might be somehow connected to this other issue I had with FNH Fluent NHibernate cannot load MySql.Data from GAC in debug mode of a test Generally I got a simple test that runs following code ...
0
votes
2answers
422 views

IIS 7 unable to load DLL (Access Denied)

I'm having this weird problem with IIS 7 on Windows 7, where it can't load a dll I'm using. However, it seems to only happen after a while; it works fine for some random amount of time until it starts ...

1 2