-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetody.cs
More file actions
72 lines (65 loc) · 2.19 KB
/
Copy pathMetody.cs
File metadata and controls
72 lines (65 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using Npgsql;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Threading.Tasks;
using System.Drawing;
using System.Reflection;
using System.Text;
namespace HTMLreader
{
partial class Program
{
public class METODY
{
public static void InsertRaportToDB(List<raport> Raport)
{
setPimstalnew connection = new setPimstalnew();
NpgsqlCommand cmd = null;
connection.Open();
try{
NpgsqlDataReader myReader = null;
NpgsqlCommand myCommand = new NpgsqlCommand("DELETE FROM meteurosystem.lma_ks_Czasy_lki", connection.connection);
myReader = myCommand.ExecuteReader();
}
catch(NpgsqlException ex)
{
Console.WriteLine(ex);
}
connection.Close();
foreach(var mvt in Raport)
{
try
{
// conn.Open();
String sql = "INSERT INTO meteurosystem.lma_ks_Czasy_lki(ttw_idtowaru, kwh_idheadu, duration)"+
"VALUES (:ttw_idtowaru, :kwh_idheadu, :duration);";
connection.Open();
cmd = new NpgsqlCommand(sql, connection.connection);
cmd.Parameters.Add(new NpgsqlParameter("ttw_idtowaru", NpgsqlTypes.NpgsqlDbType.Integer));
cmd.Parameters[0].Value = mvt.ttw_idtowaru;
cmd.Parameters.Add(new NpgsqlParameter("kwh_idheadu", NpgsqlTypes.NpgsqlDbType.Integer));
cmd.Parameters[1].Value = mvt.kwh_idheadu;
cmd.Parameters.Add(new NpgsqlParameter("duration", NpgsqlTypes.NpgsqlDbType.Integer));
cmd.Parameters[2].Value = mvt.CzasLki;
cmd.Prepare();
cmd.CommandType = System.Data.CommandType.Text;
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
throw ex;
}
finally
{
if(cmd!=null) cmd.Dispose();
if(connection!=null) connection.Close();
}
}
}
}
}
}