Mise en place de la persistance + modification du manager + liaison de la badd pgsql avec l'application
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
c48b6e2438
commit
47e8c4dcf9
@ -0,0 +1,17 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWPF>true</UseWPF>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Npgsql" Version="6.0.7" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Model\Model.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
@ -0,0 +1,69 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Npgsql;
|
||||||
|
using Model;
|
||||||
|
using System.IO;
|
||||||
|
|
||||||
|
namespace LinqToPgSQL
|
||||||
|
{
|
||||||
|
public class PersLinqToPgSQL : IPersistanceManager
|
||||||
|
{
|
||||||
|
private static string Host = "90.114.135.116";
|
||||||
|
private static string User = "postgres";
|
||||||
|
private static string DBname = "conseco";
|
||||||
|
private static string Password = "lulu";
|
||||||
|
private static string Port = "5432";
|
||||||
|
|
||||||
|
string connString =
|
||||||
|
String.Format(
|
||||||
|
"Server={0};Username={1};Database={2};Port={3};Password={4};SSLMode=Prefer",
|
||||||
|
Host,
|
||||||
|
User,
|
||||||
|
DBname,
|
||||||
|
Port,
|
||||||
|
Password);
|
||||||
|
|
||||||
|
public PersLinqToPgSQL() { }
|
||||||
|
public IEnumerable<Inscrit> LoadInscrit()
|
||||||
|
{
|
||||||
|
List<Inscrit> ListeInscrits = new List<Inscrit>();
|
||||||
|
|
||||||
|
var conn = new NpgsqlConnection(connString);
|
||||||
|
Console.Out.WriteLine("Ouverture de la connection");
|
||||||
|
conn.Open();
|
||||||
|
|
||||||
|
var AllInscrit = new NpgsqlCommand("SELECT * FROM Inscrit", conn);
|
||||||
|
|
||||||
|
var reader = AllInscrit.ExecuteReader();
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
Console.WriteLine(
|
||||||
|
string.Format(
|
||||||
|
"({0}, {1}, {2}, {3}, {4})",
|
||||||
|
reader.GetString(0),
|
||||||
|
reader.GetString(1),
|
||||||
|
reader.GetString(2),
|
||||||
|
reader.GetString(3),
|
||||||
|
reader.GetString(4)
|
||||||
|
/*reader.GetString(5)*/
|
||||||
|
/*reader.GetInt32(2).ToString()*/
|
||||||
|
)
|
||||||
|
);
|
||||||
|
foreach (var EltInscrit in reader)
|
||||||
|
{
|
||||||
|
ListeInscrits.Add(new(reader.GetString(0), reader.GetString(1), reader.GetString(2), reader.GetString(3), reader.GetString(4)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
reader.Close();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return ListeInscrits;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,14 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.1" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
@ -0,0 +1,6 @@
|
|||||||
|
[.ShellClassInfo]
|
||||||
|
IconResource=C:\WINDOWS\System32\SHELL32.dll,294
|
||||||
|
[ViewState]
|
||||||
|
Mode=
|
||||||
|
Vid=
|
||||||
|
FolderType=Generic
|
Loading…
Reference in new issue