About 1,540,000 results
Open links in new tab
  1. Insert data into Npgsql/Postgresql database with C# windows …

    Apr 20, 2022 · public static int UpdateUser(string UserId, string Password, out string ErrorMessage) { int result = 0; ErrorMessage = null; NpgsqlConnectionStringBuilder sb = new …

  2. PostgreSQL C#: Insert - PostgreSQL Tutorial

    May 21, 2024 · How to insert data into PostgreSQL database using C#. To insert a new row into a table in a PostgreSQL database from a C# program, you follow these steps: First, construct an …

  3. C# and PostgreSQL INSERT INTO - Stack Overflow

    Feb 24, 2012 · string insertQuery = "INSERT INTO npdata VALUES (@key, @ndata)"; NpAdapter.InsertCommand = new NpgsqlCommand(insertQuery, conn); NpParam = …

  4. Bulk C# datatable to postgresql table - Stack Overflow

    Jul 29, 2016 · PostgreSQL definitely does have a bulk copy (it's actually called copy), and it has a nice wrapper for .NET. If you are loading, you want to use the NpgsqlCopyIn, and if you are …

  5. Using Postgres in C# with the standard data provider (Npgsql)

    Feb 6, 2023 · You’ll see how to interact between Postgres and C# using the standard data provider library Npgsql, use it with Dapper, and even with Entity Framework. We’ll go over the …

  6. C# and PostgreSQL – Inserting Data - Stuart's Place

    In order to insert data into a PostgreSQL database, the SQL ‘Insert’ statement needs to be used. The following example inserts a record into the same ‘person’ table that was used in the …

  7. CRUD Operations in PostgreSQL Database Using ASP.Net With C# - C#

    This article shows how to do the CRUD operations in a PostgreSQL database using ASP.Net with C#.

  8. PostgreSQL C#: Insert - neon.rest

    In this tutorial, you will learn how to insert data into a table in PostgreSQL Database from a C# program.

  9. A Beginner's Guide to Using PostgreSQL in a C# Application

    Oct 2, 2023 · In this guide, we will explore the basics of using PostgreSQL in a C# application, including installation, setup, and common database operations. PostgreSQL is a powerful, …

  10. PostgreSQL CRUD Tutorials in C#: A Step-by-Step Guide

    Oct 4, 2023 · In this tutorial, we will explore the basics of performing CRUD (Create, Read, Update, Delete) operations in PostgreSQL using C#. We’ll cover the following steps: Setting …

Refresh