我有这个网络服务:
public class Connect_to_db : System.Web.Services.WebService
{
public MySqlConnection myconn;
[WebMethod]
public void Connection1()
{
string myconnection = "server = localhost;database = database2; port = 1234; username = root; password =";
myconn = new MySqlConnection(myconnection);
MySqlDataAdapter mydataadapter = new MySqlDataAdapter();
myconn.Open(); //open the session
我想要做的是在我调用服务之后能够像其他常规类一样使用变量 MySqlConnection myconn 。 我的想法的例子:
class A{
public string Hello = "hello";
}
class B{
void Goodbye(){
A useA = new A;
string Bye = A.Hello;
}
}
答案 0 :(得分:1)
使用web config存储连接字符串。它是xml,以后很容易更改。