Table of Contents

Class NpgsqlSettings

Namespace
FishMMO.Database
Assembly
FishMMO-DB.dll

PostgreSQL connection settings.

[Serializable]
public class NpgsqlSettings
Inheritance
NpgsqlSettings
Inherited Members

Properties

CommandTimeout

Gets or sets the command timeout in seconds.

public int CommandTimeout { get; set; }

Property Value

int

ConnectionTimeout

Gets or sets the connection timeout in seconds.

public int ConnectionTimeout { get; set; }

Property Value

int

Database

Gets or sets the PostgreSQL database name.

public string Database { get; set; }

Property Value

string

Host

Gets or sets the PostgreSQL host.

public string Host { get; set; }

Property Value

string

MaxPoolSize

Gets or sets the maximum connection pool size.

public int MaxPoolSize { get; set; }

Property Value

int

MinPoolSize

Gets or sets the minimum connection pool size.

public int MinPoolSize { get; set; }

Property Value

int

Port

Gets or sets the PostgreSQL port.

public string Port { get; set; }

Property Value

string

QueryPerformanceTracking

Gets or sets query performance tracking configuration.

public QueryPerformanceConfiguration QueryPerformanceTracking { get; set; }

Property Value

QueryPerformanceConfiguration

RetryPolicy

Gets or sets the retry policy configuration for transient failure handling.

public RetryPolicyConfiguration RetryPolicy { get; set; }

Property Value

RetryPolicyConfiguration

Schema

Gets or sets the database schema name.

public string Schema { get; set; }

Property Value

string