-
Notifications
You must be signed in to change notification settings - Fork 0
/
Codigo util
271 lines (173 loc) · 6.29 KB
/
Codigo util
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/*LOGIN*/
public static Login Selecthotelesporciudad(String usuario,String contra, ref String mensaje)
{
Login _usuario = new Login();
try
{
_usuario = (from p in bd.Login
where p.nombre.Equals(usuario) || p.contraseña.Equals(contra) // Tambien puede concadenar con && o ||
select p).FirstOrDefault();
/*if (_usuario != null)
{
Form2 p = new Form2();
p.ShowDialog();
}
else
{
mensaje = "USUARIO NO VALIDO";
}*/
}
catch (SqlException ex)
{
mensaje = ORM.MensajeError(ex);
//mensajes = ex.Number + " " + ex.Message;
}
/* SELECT* from dbo.hoteles
WHERE id_ciudad IN(SELECT id_ciudad FROM dbo.ciudades WHERE dbo.ciudades.id_ciudad= dbo.hoteles.id_ciudad)*/
return _usuario;
}
_______________________________________________________________________________________________________________
INSERT (REGISTRO)
public static String InsertLogin(String Nombre, String Password)
{
String mensaje = "";
Login newLOGIN = new Login();
newLOGIN.nombre = Nombre;
newLOGIN.contraseña = Password;
ORM.bd.Login.Add(newLOGIN);
mensaje = ORM.SaveChanges();
return mensaje;
}
public static String MensajeError(SqlException sqlEx)
{
String mensaje;
switch (sqlEx.Number)
{
case -1:
mensaje = "Error de conexión con el servidor";
break;
case 547:
mensaje = "Tiene datos relacionados";
break;
case 2601:
mensaje = "Datos duplicados";
break;
case 2627:
mensaje = "Datos duplicados";
break;
case 4060:
mensaje = "No se encuentra la base de datos";
break;
case 18456:
mensaje = "Usuario o contraseña incorrectos";
break;
default:
mensaje = sqlEx.Number + " -" + sqlEx.Message;
break;
}
return mensaje;
}
//SEGUNDA FORMA DEL SELECT
public static void RejectChanges()
{
foreach (DbEntityEntry entry in bd.ChangeTracker.Entries())
{
switch (entry.State)
{
case EntityState.Modified:
entry.State = EntityState.Unchanged;
break;
case EntityState.Added:
entry.State = EntityState.Detached;
break;
case EntityState.Detached:
entry.Reload();
break;
default: break;
}
}
}
public static String SaveChanges()
{
String mensaje = "";
try
{
bd.SaveChanges();
}
catch (DbUpdateException ex)
{
RejectChanges();
SqlException sqlEx = (SqlException)ex.InnerException.InnerException;
mensaje = MensajeError(sqlEx);
}
return mensaje;
}
}
________________________________________________________________________________________________________________
using BlowFishCS;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplicationTestblofish
{
public partial class Form1 : Form
{
BlowFish b = new BlowFish("04B915BA43FEB5B6");
String mensaje="";
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
string cipherText = b.Encrypt_CBC(textBoxDec.Text);
textBoxdes.Text = cipherText;
}
private void button2_Click(object sender, EventArgs e)
{
string cipherText = b.Decrypt_CBC(textBoxcod2.Text);
textBoxdes2.Text = cipherText;
}
private void buttonlogin_Click(object sender, EventArgs e)
{
//ORM.Selecthotelesporciudad(textBoxuser.Text, textBoxpass.Text,ref mensaje);
if(ORM.Selecthotelesporciudad(textBoxuser.Text, b.Encrypt_CBC(textBoxpass.Text), ref mensaje)==null)
{
MessageBox.Show("El usuario indicado no existe", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Form2 p = new Form2();
p.ShowDialog();
}
// string cipherText = b.Encrypt_CBC(textBoxpass.Text);
/* string cipherText = b.Decrypt_CBC(textBoxpass.Text);
TEST.SelectPoblacion(textBoxuser.Text, cipherText, ref mensaje);
if (!mensaje.Equals(""))
{
MessageBox.Show(mensaje, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
}*/
}
private void button3_Click(object sender, EventArgs e)
{
mensaje = ORM.InsertLogin(textBoxuser.Text, b.Encrypt_CBC(textBoxpass.Text));
if (!mensaje.Equals(""))
{
MessageBox.Show(mensaje, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
MessageBox.Show("Se ha dado de alta", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
}