Npgsql - Foro Support - Manuales tecnicos

Announcement

Collapse
No announcement yet.

Npgsql

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Npgsql

    Npgsql


    Standard

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use r Id=myUsername;
    Password=myPassword;
    Using windows security

    Server=127.0.0.1;Port=5432;Database=myDataBase;Int egrated Security=true;
    Setting command timeout

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use r Id=myUsername;
    Password=myPassword;CommandTimeout=20;
    Setting connection timeout

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use r Id=myUsername;
    Password=myPassword;Timeout=15;
    Specifying protocol version

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use r Id=myUsername;
    Password=myPassword;Protocol=3;
    SSL activated

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use rid=myUsername;
    Password=myPassword;Protocol=3;SSL=true;SslMode=Re quire;

    Without SSL

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use rid=myUsername;
    Password=myPassword;Protocol=3;SSL=false;SslMode=D isable;

    Controlling pooling mechanisms

    Server=127.0.0.1;Port=5432;Database=myDataBase;Use rid=myUsername;
    Password=myPassword;Protocol=3;Pooling=true;MinPoo lSize=1;MaxPoolSize=20;ConnectionLifeTime=15;
Working...
X