-
Notifications
You must be signed in to change notification settings - Fork 0
/
OLED.cs
55 lines (55 loc) · 1.31 KB
/
OLED.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
/*
*
* OLED.cs
* Author: Base Max
* Purpose of write is easy and ready (https://github.com/BaseMax/).
* OLEDB = OLE DB = Object Linking + Embedding Database
*
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Data;
class OlED
{
public void connect(string query)
{
}
public OleDbDataReader selects(OleDbCommand command, OleDbConnection connection)
{
connection.Open();
using (OleDbDataReader reader = command.ExecuteReader())
{
connection.Close();
return reader;
}
}
public DataSet get(OleDbCommand command, OleDbConnection connection)
{
connection.Open();
DataSet set = new DataSet();
using (OleDbDataAdapter adapter = new OleDbDataAdapter(command))
{
adapter.Fill(set);
connection.Close();
return set;
}
}
public Int64 count(OleDbCommand command, OleDbConnection connection)
{
Int64 count = 0;
connection.Open();
//try,catch
using (OleDbDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
count++;
}
}
connection.Close();
return count;
}
}