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
ConnectionTimeout
Gets or sets the connection timeout in seconds.
public int ConnectionTimeout { get; set; }
Property Value
Database
Gets or sets the PostgreSQL database name.
public string Database { get; set; }
Property Value
Host
Gets or sets the PostgreSQL host.
public string Host { get; set; }
Property Value
MaxPoolSize
Gets or sets the maximum connection pool size.
public int MaxPoolSize { get; set; }
Property Value
MinPoolSize
Gets or sets the minimum connection pool size.
public int MinPoolSize { get; set; }
Property Value
Port
Gets or sets the PostgreSQL port.
public string Port { get; set; }
Property Value
QueryPerformanceTracking
Gets or sets query performance tracking configuration.
public QueryPerformanceConfiguration QueryPerformanceTracking { get; set; }
Property Value
RetryPolicy
Gets or sets the retry policy configuration for transient failure handling.
public RetryPolicyConfiguration RetryPolicy { get; set; }
Property Value
Schema
Gets or sets the database schema name.
public string Schema { get; set; }