generated from giis-uniovi/samples-giis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleDbConnectionWrapper.N.cs
68 lines (62 loc) · 2.41 KB
/
SampleDbConnectionWrapper.N.cs
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
using System.Data.Common;
namespace Giis.Qacover.Driver
{
/**
* Ado net no tiene la posibilidad de manejo como en java con p6spy, por lo que para interceptar
* las queries, se deberan usar objetos de conexion como este que se instancian a partir de
* una DbConnection (la nativa).
* El funcionamiento de la intercepcion es similar pero con un patron mas simple:
* no se necesita una factoria, sino que la configuracion externa especificara directmente la clase que
* interceptara los eventos (el event listener).
* Justo antes de ejecutar la sql invocara al event trigger que se encarga de llamar
* al event listener mediante reflexion (si existe)
* El event trigger manitene en una variable compartida que es el string que se ha configurado
* para indicar el event listener.
*/
public class SampleDbConnectionWrapper
{
DbConnection nativeConn;
public SampleDbConnectionWrapper(DbConnection connection)
{
this.nativeConn = connection;
}
public DbConnection getNativeConnection()
{
return this.nativeConn;
}
public void ExecuteUpdate(string sql)
{
using (DbCommand stmt = this.nativeConn.CreateCommand())
{
stmt.CommandText = sql;
stmt.ExecuteNonQuery();
}
}
public DbDataReader ExecuteQuery(string sql)
{
new EventTrigger().InvokeListener(nativeConn, sql, null);
using (DbCommand stmt = this.nativeConn.CreateCommand())
{
stmt.CommandText = sql;
return stmt.ExecuteReader();
}
}
public DbDataReader ExecuteQuery(string sql, DbParameter[] parameters)
{
//La invocacion al listener se realizara despues de crear la stmt pues se necesita para
//tener instanciada la coleccion de parametros
using (DbCommand stmt = this.nativeConn.CreateCommand())
{
foreach(DbParameter parameter in parameters)
stmt.Parameters.Add(parameter);
new EventTrigger().InvokeListener(nativeConn, sql, stmt.Parameters);
stmt.CommandText = sql;
return stmt.ExecuteReader();
}
}
public virtual void Close()
{
this.nativeConn.Close();
}
}
}