Advertisement
Fhernd

R902Programa.cs

Mar 27th, 2018
1,539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System.Data.SqlClient;
  2.  
  3. namespace R902PoolConexiones
  4. {
  5.     class R902Programa
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             using (SqlConnection conexion = new SqlConnection())
  10.             {
  11.                 conexion.ConnectionString = @"Data source =.\SQLEXPRESS; Initial catalog = Northwind;Integrated Security=SSPI;" +
  12.                     "Min Pool Size= 5; Max Pool Size = 15; Connection Reset = True; Connection Lifetime = 600";
  13.  
  14.                 conexion.Open();
  15.             }
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement