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
| using System;
| using System.Collections.Generic;
| using System.Data;
| using System.Text;
|
| namespace Terra.YaoGan.Common
| {
| public interface IDatabaseInterface
| {
|
| /// <summary>
| /// 数据库连接字符串
| /// </summary>
| /// <param name="connectstring">数据库连接字符串</param>
| void connect();
|
| /// <summary>
| /// 数据关闭
| /// </summary>
| void close();
|
| int getRow(string sql);
|
| DataTable QuerySql(string sql);
|
| }
| }
|
|