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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
| using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Configuration;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public SqlConnection myConnection;
public int connection ()
{
SqlConnection myConnection = null;
String connectionString = "user id=yahyawi\\Eya ; password= ;Trusted_Connection=yes;server=YAHYAWI\\ADMIN; database=base";
myConnection = new SqlConnection(connectionString);
try
{
myConnection.Open();
return 0;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
return -1;
}
}
public int remplirTable()
{
int ret;
String valeur1 = numero.Text;
String valeur2 = pre.Text;
String valeur3 = nm.Text;
try
{
SqlCommand myCommand = new SqlCommand("INSERT INTO personne " +
"([numero] " +
",[prenom] " +
",[nom] " +
"VALUES " +
"('" + valeur1 + "'" +
"," + valeur2 +
", '" + valeur3 + "'" +
")", myConnection);
ret = myCommand.ExecuteNonQuery();
return ret;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
return -1;
}
}
private void button1_Click(object sender, EventArgs e)
{
int con = connection();
if (con == 0)
{
textBox1.Text = "connexion established";
}
else textBox1.Text = "failure";
int r = remplirTable();
if (r != -1)
{
textBox1.Text = "done";
}
else textBox1.Text = "failed";
/* int ret = 0;
SqlDataReader myReader = null;
try
{
SqlCommand myCommand = new SqlCommand("select * from base1" , myConnection);
myReader = myCommand.ExecuteReader();
if (myReader.Read())
{
ret = myReader.GetInt32(0);
}
myReader.Close();
myReader = null;
textBox1.Text = ret.ToString();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
textBox1.Text = "fhhg";*/
}
private void num_TextChanged(object sender, EventArgs e)
{
}
}
} |
Partager