PIbd-21_Danilov_V.V._SUBD/NewsBlog/NewsBlogDatabaseImplementation/SqlConnection.cs

13 lines
273 B
C#
Raw Permalink Normal View History

2024-05-19 21:59:55 +04:00
using Npgsql;
namespace NewsBlogDatabaseImplementation
{
public class SqlConnection
{
public static NpgsqlConnection GetConnection()
{
return new NpgsqlConnection("Host=192.168.56.103;Port=5432;Username=postgres;Database=postgres;Password=postgres");
}
}
}