Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3600878
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:33:03+00:00 2026-05-18T20:33:03+00:00

we are developing a database backend for a multiplayer game. The server is written

  • 0

we are developing a database backend for a multiplayer game. The server is written in C# and talks to a Postgres database via Npgsql.

Now, the manual shows how to use prepared statements:

NpgsqlCommand command = new NpgsqlCommand("select * from tablea where column1 = :column1", conn);
// Now add the parameter to the parameter collection of the command specifying its type.
command.Parameters.Add(new NpgsqlParameter("column1", NpgsqlDbType.Integer);
// Now, prepare the statement.
command.Prepare();
// Now, add a value to it and later execute the command as usual.
command.Parameters[0].Value = 4;

And it states that prepared statements are valid only inside a database session.
I have two questions now:

1.) Will the server recognize that this command was prepared if I create a new NpgsqlCommand object with the same command text and parameter types or do I have to keep the object and simply change the variables before executing it again? In the example the command object is disposed after the query.

2.) Will prepared statements probably increase the performance although we ONLY have simple statements in this style:

SELECT f1,f2 FROM t1
UPDATE t1 SET f1=1, f2=2

It is possible that hundreds of queries with the same style are executed in a row – currently creating a new NpgsqlCommand (and also NpgsqlConnection from NpgSql’s pool) object for each query.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T20:33:04+00:00Added an answer on May 18, 2026 at 8:33 pm

    I’d advise you to not use prepared statements. Npgsql doesn’t have a very good performance yet with it. 🙁 Sorry for that.

    also, in order to send a lot of insert commands, I think you should look at NpgsqlCopy support. It will give you a much better performance.
    I hope it helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

we are developing a database backend for a multiplayer game. The server is written
I'm currently developing a PHP application that's using an Access database as a backend.
I'm developing an Access 2003 Database that uses a MS SQLServer backend. I'm trying
We are developing a MySQL database (with frontend and backend) with holiday packages. We
I'm developing an web application that uses a non-relational database as a backend (django-nonrel
I'm developing an iPhone app that uses the built-in SQLite database. I'm trying to
I am currently developing a Rails application using a database that was designed before
I am developing an application which will be connected to Access database at the
I am developing an iPhone application that persists data to a SQLite3 database. For
I am developing RoR application that works with legacy database and uses ActiveScaffold plugin

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.