01.
class
Class1
02.
{
03.
public
static
bool
data(
string
a,
string
b,
string
c,
string
d)
04.
{
05.
try
06.
{
07.
MySqlConnection objConn =
new
MySqlConnection();
08.
MySqlCommand objCmd =
new
MySqlCommand();
09.
string
strConnString =
"server=localhost;User Id=root; Password=123456; Database=atpservicemotion; Pooling=false;"
;
10.
objConn.ConnectionString = strConnString;
11.
objConn.Open();
12.
13.
14.
15.
objConn.Close();
16.
objConn =
null
;
17.
return
true
;
18.
}
19.
catch
20.
{
21.
return
false
;
22.
}
23.
}
24.
}