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.
0
votes
1answer
24 views
SSL errors when using Npgsql and SSL certificate authentication
I'm having trouble establishing a connection to a PostgreSQL database that is configured only to accept a valid SSL certificate. I can connect using pgAdmin III with the appropriate certificate and ...
1
vote
1answer
24 views
Issues with NpgsqlDatareader when trying to integrate Vb.net with PostgreSQL database
So I am fairly new (read just starting) to PostgreSQL and VB.net.
I have done research and am using the Npgsql.dll and Mono.Security.Protocol.Tls.dll as references to connect to the database.
...
0
votes
1answer
10 views
Sharing NpgsqlConnection with all repositories
Context :
I am trying to understand the UnitOfWork pattern and its relation with repositories.
But I have a basic questions related to the NpgsqlConnnection class.
My UnitOfWork contains a private ...
0
votes
1answer
7 views
Npgsql count rows error
The code I have a problem with:
NpgsqlCommand if_ex = new NpgsqlCommand("SELECT count(id_unit) FROM unit WHERE name=" + "'" + tmp + "'", conn);
int ex = (int)if_ex.ExecuteScalar();
Throws an ...
0
votes
0answers
4 views
Npgsql: generating next key with last_value for INSERT error
Once again I am forced to ask for help, because I honestly don't even understand where could the problem lie.
I am using Npgsql and trying to write an INSERT statement. For the next values generation ...
0
votes
0answers
29 views
Can't cast System.Collections.Generic.List into any valid DbType - Npgsql
I can update using Npgsql without a problem if i have int,double,string, but with List it is not working. For example:
com.Parameters.Add(new Npgsql.NpgsqlParameter("@number", number));
works ...
2
votes
0answers
76 views
Calling a stored procedure in Postgresql through F# and Npgsql
I am trying to call a stored procedure in postgresql from F# using the Npgsql type provider.
Currently, I am connected to the database as follows:
open System
open System.Data
open ...
0
votes
0answers
16 views
C# NPGSQL CRUD DataGrid many to many relations?
I know how to do these things for one to many relationships, but is there anything I should keep in mind when writing code for CRUD operations for many to many relationship. I am trying to do this in ...
0
votes
1answer
95 views
Using Postgres with F#
I'm trying to connect F# with an existing Postgresql database in a way that lets me take advantage of the database types during development (via Type Providers or Entity Framework, or a combination ...
1
vote
0answers
40 views
Is there any existing solution for generating EF Code First types from a PostgreSQL Database with Npgsql Driver?
I have successfully run some tests with PostgreSQL and EF Code First and I know it works. I have an existing database that is quite large and it would be helpful if the EF Power Tools Reverse ...
1
vote
1answer
14 views
npgsql treats value as column name
I am passing a value from a DataTable(it's source of course is a Postgres table) to a query and it's treating the value as a column name not a value. I know that it's because of the double quotes ...
0
votes
2answers
23 views
Npgsql statement 'in' pass an array of strings
I know that a question like this already exists in: How to pass parameter to sql 'in' statement?
but the answers didn't help me, so I am asking for your guidance.
How do you pass a string array as ...
0
votes
1answer
33 views
Getting search_path to work with Npgsql
What is the appropriate way to set the search_path for a particular user on either the entire database or just a schema in PostgreSQL in order for it to work via Npgsql?
Let's take my user reader for ...
0
votes
0answers
88 views
Entity Framework and PostgreSQL: exception when calling Stored Procedure
I'm trying to interface my PostgreSQL database using Microsoft entity framework.
As the npgsql database provider does not integrate into visual studio I'm using the EdmGen tool to generate the ...
0
votes
1answer
49 views
Notify FUNCTION in PGSQL to pass column values to C#
I have a TRIGGER created in PGSQL to NOTIFY my c# app when a new ROW is created in my TABLE with a matching condition on a column value.
FUNCTION to send msgfail to c#:
CREATE OR REPLACE FUNCTION ...
0
votes
0answers
55 views
Connection leak npgsql, does they fix it?
I am C# developer, working with Postgresql through Npgsql with NHibernate 3.*.*.
And i have got connection leaks through when using "Robots"(realized with server cache callbacks) in my ASP.NET MVC 4 ...
0
votes
1answer
97 views
Trouble with Update command for datagridview and npgsql
I'm having some issues with the NpgsqlCommandBuilder and a datagridview.
There is no problem filling the datagridview with data but I can't get the updatecommand to work.
My code looks like this
...
1
vote
1answer
63 views
Npgsql parameters with NULL value, vb.net
I'm running through a loop adding parameters, when I get to a NULL, the program punts. My statement looks like this:
mysql = "Insert into TABLE (field1) VALUES (:Col1)"
mycomm = New NpgsqlCommand ...
0
votes
1answer
51 views
How do I set encoding in an NpgsqlConnection
I have a PostgreSQL database, which uses character encoding WIN1252.
When querying the database, some records will produce an error when trying to read the data, because it is trying to convert it to ...
0
votes
1answer
54 views
Castle Activerecord error is “relation does not exist” on Postgresql?
ActiveRecord mape:
[ActiveRecord("JobTitle",Schema="public")]
public class JobTitle :ActiveRecordValidationBase<JobTitle>
{
[PrimaryKey(Column = "Id")]
public virtual int Id { get; ...
0
votes
2answers
242 views
npgsql schema “dbo” does not exist
i have a problem similar to Entity Framework 5.0 PostgreSQL (Npgsql) default connection factory
I have Npgsql declared in app.config :
<connectionStrings>
<add name="monDbContexte"
...
1
vote
1answer
99 views
Npgsql failed to establish connection to CentOS PostgreSQL through PgPool
I have a webapplication in Asp.net connecting to a separate database-server running CentOS with PostgreSQL. This setup works fine.
To increase performance on the database-server I'm trying to ...
1
vote
0answers
58 views
Receiving NOTIFY payloads via nPgSQL
At present, I am using NPGSQL connector for connecting the PostgreSQL database with my application which is written in VB.Net.
I tried to NOTIFY the table changes for particular tables to the ...
0
votes
1answer
73 views
NpgsqlDataAdapter Object reference not set to an instance of an object
I'n using .Net provider for Postgresql and when i run the following code I got "Object reference not set to an instance of an object." error.
I run the following code from a form:
DataTable x = new ...
0
votes
1answer
54 views
Linq query optimization and method syntax equivalent
I have these two queries :
The first one gets a distinct list of identifiers.
The second filter its result on these ids.
var query = (from bk in context.BookKeeping
join bk12 ...
1
vote
0answers
101 views
Issues migrating from EF5 to EF6a3
I update one MVC4 project using NuGet from EF5 to EF6a3 and exclude the reference to System.Data.Entity. Unfortunately I have some issues.
First, the web.config don't accept the "providers" element, ...
1
vote
1answer
283 views
Npgsql integration with Entity Framework Code First
I have a project using the last version of EF CF with PostgreSQL and Npgsql.
My model looks like:
[Table("mytable")]
public class MyTable
{
[Column("id")]
public int Id { get; set; }
...
1
vote
1answer
120 views
How can I use an hstore column type with Npgsql?
I have a table with the following schema:
CREATE TABLE account
(
id serial primary key,
login varchar(40) not null,
password varchar(40) not null,
data hstore
);
I'd like to use an ...
0
votes
0answers
39 views
Npgsql Commandtimeout Value; Is 0 indefinite?
I haven't really found anything that categorically states this. If I set the Commandtimeout value for a connection object in npgsql, will that set it to wait indefinitely?
0
votes
0answers
133 views
connect to postgres db [closed]
I am trying to connect to my postgres database from the web.config file. The following is the code I have in the we.config:
<system.web>
<compilation debug="true" ...
0
votes
1answer
109 views
Use postgres with sqldatasource in asp.net
I am using npgsql in ordre to connect to my postgres databse. Now I would like to do add the connection in my web.config so to be able to use the sql data source tag of the asp.net.
The following is ...
0
votes
1answer
89 views
Nhibernate Mapping by Code conventions to Postgres Sequence
I´m using PostGres 8.3 and have NHibernate working fine with database...
I´m creating a Conventions file and I´m having problem to configure the Primary key sequence... All my tables have a primary ...
0
votes
0answers
50 views
npgsql error: 2202E multidimensional must have array expressions with matching dimensions
I am trying to call a procedure from C# with an array on the parameter list but I get the above error.
Here is the relevant code:
string[] adat = new string[36];
....
string insertCommand = ...
0
votes
1answer
157 views
ASP.NET - Mono - PostgreSQL - Failed to establish a connection [0x00101]
Been trying to get my asp.net application to connect to my PostgreSQL database under mono for a few days to no avail. Can connect to it under IIS but not Apache and Mono.
The ASP.NET part works ...
0
votes
1answer
74 views
NHibernate + Npqsql + LINQ gives “Parameter p1 not found in query”
I'm converting from MySQL to Postgres, and some linq queries cause exceptions. Specifically, I get a problem on a query that adds a bitwise operator comparison. I noticed that the parameters in the ...
2
votes
2answers
188 views
IDBCommand Parameters for multi-line insert
I want to create a multi-line insert statement along these lines:
insert into foo (
value1,
value2,
value3
) values
( "1", "2", "3"),
( "4", "5", "6"),
( "7", "8", "9");
where the ...
0
votes
0answers
230 views
Check if PostgreSQL table exists with Npgsql
Until now I don't see any difference in using Npgsql driver instead of ODBC when working with PostgreSQL database on windows. But now I find one.
I have such code to check if table exists with ODBC:
...
0
votes
1answer
137 views
Using timestamp with time zone with Npgsql
There is a need to save timestamp with time zone in database. Target field in table is declared as
"UploadTime" timestamp with time zone
I'm inserting data using command parameters :
var ...
2
votes
0answers
121 views
How to generate edmx from postgresql database
I have a database in postgresql and i want to generate the edmx (entity framework) using wizard in vs 2010(v4.0) in my project.
I followed all steps given in this blog
...
0
votes
1answer
212 views
PostgreSQL: How to insert only one backslash into PostgreSQL database
Does anyone know how to store a single backslash into PostgreSQL Database?
I am using C# and Nqgsql to access PostgreSQL, and my case is I want to store "1\\0\\0\\0\\1\\0" into the database, and the ...
0
votes
1answer
181 views
How do I fix a DbProviderServices inheritance error for a MVC3 project on Mono 3.0.3, Entity Framework 6 Beta2 and Npgsql?
I have a MVC3 project targeting .net 4.5 running on Mono to the point where the only thing that is failing is the connection from Entity Framework to PostgreSQL.
I have an almost identical project ...
0
votes
2answers
203 views
Inserting Large Object into Postgresql returns 53200 Out of Memory error
Postgresql 9.1
NPGSQL 2.0.12
I have binary data I am wanting to store in a postgresql database. Most files load fine, however, a large binary (664 Mb) file is causing problems. When trying to load ...
1
vote
0answers
238 views
Is there way to get PostgreSQL service name?
Is there way to get PostgreSQL service name?
I mean something like SELECT @@SERVICENAME as in MS SQL Server. Or maybe it is declared in one of config files?
It's called Service ID:
0
votes
0answers
119 views
what does this npgsql Time datatype documentation mean?
We are considering PostgreSQL because of its adherence to ISO 8601 3.5.2, specifically in regard to the standalone (uncombined) Time datatype (e.g. 18:50) as distinct from combined DateTime ...
0
votes
1answer
100 views
How to pass object as parameter in Postgres function using npgsql
In my .net implementation I want to pass .net object as parameter of stored function of postgresql.
0
votes
2answers
457 views
Unable to create database in PostreSQL using Npgsql and Entity Framework code first
I am attempting to set up my application to use Entity Framework with PostgreSQL, but I have run up against a problem. I have added Npqsql via nuget, and added the following provider factory to ...
0
votes
0answers
277 views
Updating DatagridView and/or PostgreSQL database with Npgsql
I would like to try how Npgsql work in some "real situation" and maybe I can switch from ODBC system to Npgsql. For start I see that Npgsql is a bit slower than native windows data system but as I can ...
0
votes
2answers
279 views
How should I be using Npgsql in Appharbor?
I've developed a quick and simple app on my local machine using SQLite to get started. Now that I'm in the middle of working out how to upload to AppHarbor, I'm a bit stuck on getting the link to ...
0
votes
0answers
185 views
Specified cast is not valid whith DateTime field mapping (Npgsql 2.0.12 + Nhibernate 3.3.1 + postgres 8.4 )
I'm using MVC 3 + spring 1.3.2 + Nhibernate 3.3.1 +Npgsql 2.0.12 + postgres 8.4 ).
Since 2 days, i'm facing a problem with DateTime field mapping.
...
public virtual DateTime CreationDate { get; ...
0
votes
0answers
123 views
Weird error on transactions -> using NonQuery getting Reader must be closed
I'm developing a client in C# and POSTGRESQL.
It needs to parse some texts and insert data in the tables correctly, so we have a parsed which gives me a Dictionary for each tables (4 at the moment).
...
