0

同じSQLコードを再利用する一連のプロセスをC#で開発しています。以下は、テストデータベースへのSQL接続用に作成したクラスの例です。質問:プロセスでクラスを呼び出すにはどうすればよいですか?私はいくつかのことを試しましたが、以下のエラーが発生します

エラー:

SQLHelperCode.FirstConnect is a 'type'  which is not valid in the given context.
Only Assignment, call, increment, decrement and new object expressions can be used as a statement

クラスFirstConnect

public class FirstConnect
{
    public FirstConnect()
    {
        SqlConnection conn;
        string path = @"C:\Program Files (x86)\Microsoft SQL Server\MSSQL.1\MSSQL\Data";
        const string dbName = "datadetail";
        {
            conn = new SqlConnection("user id=TestUser;" +
                                     "server=TestData\\SQLEXPRESS;" +
                                     "Trusted_Connection=yes;" +
                                     "connection timeout=30");

            try
            {
                conn.Open();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }
    }
}

このコードでFirstConnectを呼び出したい:

protected override void OnBarUpdate()
{
    accountName = Account.Name.ToString();

    if (accountName == 'Test1234')
    {
        //Call FirstConnect here.
    }
}
4

3 に答える 3

5

This line defines the class

public class FirstConnect
 {

This line defines the constuctor

    public FirstConnect()
      {

The following will define a variable of type FirstConnect and then call the constructor to create it (I made it two lines to be explicit)

FirstConnect fc;
fc  = new FirstConnect();

Typically you'd then want to have method that actually does something with the object

e.g.

SomeOtherObject varaibleName = fc.GetSomeData(accountName);
于 2012-05-25T17:01:56.247 に答える
1

FirstConnect fc = new FirstConnect();

于 2012-05-25T17:00:50.340 に答える
1

答えではなく、ただの大きなコメントです...

IDisposabledoのように実装するクラスを使用する場合SqlConnectionは、次のように使用する必要があります。

using (var conn = new SqlConnection("user id=TestUser;server=TestData\\SQLEXPRESS;Trusted_Connection=yes;connection timeout=30"))
{
   //... do work ... 
}
于 2012-05-25T17:07:37.607 に答える