1

次の機能が必要なアプリを作成しています。

  • GUI は Web インターフェイスに表示されるはずです (したがって、C# Web アプリケーションを使用しています)。
  • .mdb ファイルを選択できるようにする
  • 行を追加
  • 行を削除する
  • 行の編集
  • すべてを .mdb ファイルに保存します。

私は何年もグーグルで検索してきました。

私は通常の C# Windows フォーム アプリケーションで同様のアプリケーションを作成しました。OLEdb を使用してすべてを実行しましたが、正常に動作しました。

C# Windows フォーム アプリでは、Gridview コントロールを使用しました。Web アプリケーションには Gridview がないため、データグリッドを使用しました。

これまでのコードは次のとおりです。

public partial class _Default : System.Web.UI.Page
{

    string databasePath = "____________.mdb";
    DataTable userTable = new DataTable();
    OleDbDataAdapter adapter;
    OleDbConnection connection;
    OleDbCommand command;
    OleDbCommandBuilder builder;
    DataSet ds;
    DataSet tempDs;
    public string DatabaseName = null;
    string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=";



    protected void Page_Load(object sender, EventArgs e)
    {
        tbDatabasePath.Text = databasePath;
    }

    protected void btnLoadData_Click(object sender, EventArgs e)
    {
        ReadRecords();
    }

    protected void btnGetTables_Click(object sender, EventArgs e)
    {
        try
        {
            ddTables.Items.Clear();
            ddTables.Text = null;
            getTables();

        }
        catch (Exception ex)
        {
            ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Could not retrieve the Tables');", true);
        }
    }


    private void getTables()
    {

        string tempstring = "";
        string getTConnection = connectionString + databasePath; ;

        OleDbConnection myConnection = new OleDbConnection(getTConnection);

        myConnection.Open();

        DataTable datT = myConnection.GetSchema("Tables");

        for (int i = 0; i < datT.Rows.Count; i++)
        {
            tempstring = datT.Rows[i][2].ToString();

            if (tempstring.Contains("MSys"))
            {
            }
            else
            {
                ddTables.Items.Add(datT.Rows[i][2].ToString());
            }
        }
        myConnection.Close();
    }

    private void ReadRecords()
    {
        datagrid.DataSource = null;

        OleDbDataReader reader = null;

        try
        {
            connection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; " + "Data Source=" + databasePath);
            OleDbCommand cmd = new OleDbCommand("Select * FROM " + ddTables.Text, connection);
            adapter = new OleDbDataAdapter(cmd);
            builder = new OleDbCommandBuilder(adapter);
            ds = new DataSet("MainDataSet");
            tempDs = new DataSet("TempDataSet");

            connection.Open();
            adapter.Fill(tempDs);
            tempDs.Clear();
            tempDs.Dispose();
            adapter.Fill(ds, ddTables.Text);
            userTable = ds.Tables[ddTables.Text];

        }
        catch
        {
            ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Could not load the data');", true);
        }
        finally
        {
            if (reader != null) reader.Close();
            //if (connection != null) connection.Close();
            datagrid.ShowFooter = true;
        }
        CreateTempTable(0, 10);
        ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('DONE');", true);

    }

    private void ReadRecords2()
    {
       // datagrid.DataSource = null;

        OleDbDataReader reader = null;

        try
        {
            connection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; " + "Data Source=" + databasePath);
            OleDbCommand cmd = new OleDbCommand("Select * FROM " + ddTables.Text, connection);
            adapter = new OleDbDataAdapter(cmd);
            builder = new OleDbCommandBuilder(adapter);
            ds = new DataSet("MainDataSet");
            tempDs = new DataSet("TempDataSet");

            connection.Open();
            adapter.Fill(tempDs);
            tempDs.Clear();
            tempDs.Dispose();
            adapter.Fill(ds, ddTables.Text);
            userTable = ds.Tables[ddTables.Text];

        }
        catch
        {
            ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Could not load the data');", true);
        }
        finally
        {
            if (reader != null) reader.Close();
            //if (connection != null) connection.Close();
        }
        CreateTempTable(0, 10);
        ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('DONE');", true);

    }

    private void CreateTempTable(int startRecord, int noOfRecords)
    {
        try
        {
            userTable.Rows.Clear();
            adapter.Fill(ds, "");
            userTable = ds.Tables[""];
        }
        catch (Exception ex)
        {
            ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Could not load the data in  CreateTempTable');", true);
        }


        datagrid.DataSource = userTable.DefaultView;
        datagrid.DataBind();

    }

    protected void datagrid_RowEditing(object sender, GridViewEditEventArgs e)
    {
        datagrid.EditIndex = e.NewEditIndex;
        ReadRecords();

    }

    protected void datagrid_SelectedIndexChanged(object sender, EventArgs e)
    {

    }

    protected void datagrid_RowUpdated(object sender, GridViewUpdatedEventArgs e)
    {
        adapter.Update(userTable);
    }

    protected void datagrid_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {

        adapter.Update(userTable);
        ReadRecords();
    }

    protected void datagrid_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
    {

       datagrid.EditIndex = -1;
       ReadRecords();

    }

    protected void datagrid_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        int rowToDelete = e.RowIndex;
        datagrid.DeleteRow(rowToDelete);
        adapter.Update(userTable);
        ReadRecords();

    }
}

}

できる :

  • .mdb ファイルを取得する
  • ファイル内のテーブルを取得して表示する
  • 選択したテーブルからデータを読み取り、グリッドビューに表示します
  • 編集削除ボタンを追加する

編集ボタンをクリックすると、選択した行が編集可能になります。しかし、更新ボタンをクリックすると、「オブジェクト参照がオブジェクトのインスタンスに設定されていません」というメッセージが表示されます。コードは Forms アプリケーションで機能しました。

方法はありますか adapter.Update(userTable); フォーム アプリケーションで機能したのと同じように機能しますか?

誰でも私の問題を見るのを手伝ってくれませんか。変更を .mdb ファイルに保存することしかできない場合は、非常にうれしいです。

4

1 に答える 1

0

プライベート変数の動作は、Web アプリケーションと WinForms では異なります。つまり、メソッドで変数 (具体的にはadapter)を初期化する必要がありますPage_Load。その後、非 null になり、使用できます。

注: また、データセットに加えられた変更を保存する必要があります... すべてがどのように機能するかについてもう少し読むことをお勧めします...たとえば、Sessionオブジェクトを使用するか、 ViewStateを確認することをお勧めします

ASP.NET ビュー ステートについて: http://msdn.microsoft.com/en-us/library/ms972976.aspx

IsPostBack: http://msdn.microsoft.com/en-us/library/system.web.ui.page.ispostback.aspx

于 2012-09-04T09:10:31.107 に答える