-
Notifications
You must be signed in to change notification settings - Fork 1
/
DBConnect.cs
40 lines (34 loc) · 893 Bytes
/
DBConnect.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.SqlClient;
using System.Configuration;
namespace FoodFest
{
public class DBConnect
{
private SqlConnection connectionObj;
private SqlCommand commandObj;
public DBConnect()
{
connectionObj = new SqlConnection(ConfigurationManager.ConnectionStrings["FoodFestConn"].ConnectionString);
commandObj = new SqlCommand();
}
public SqlConnection SqlConnectionObj
{
get
{
return connectionObj;
}
}
public SqlCommand SqlCommandObj
{
get
{
commandObj.Connection = connectionObj;
return commandObj;
}
}
}
}