參考說明:http://www.1keydata.com/tw/sql/sql-alter-table.html



string strAccessConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + db + "db\\Trade.mdb";
string strAccessSelect = "ALTER TABLE Work ADD Kind char(1) ";
// Create the dataset and add the Categories table to it:
DataSet myDataSet = new DataSet();
OleDbConnection myAccessConn = null;
try
{
myAccessConn = new OleDbConnection(strAccessConn);
}
catch (Exception ex)
{
Console.WriteLine("Error: Failed to create a database connection. \n{0}", ex.Message);
return;
}

try
{

OleDbCommand myAccessCommand = new OleDbCommand(strAccessSelect, myAccessConn);
OleDbDataAdapter myDataAdapter = new OleDbDataAdapter(myAccessCommand);

myAccessConn.Open();
myDataAdapter.Fill(myDataSet, "Categories");

}
catch (Exception ex)
{
Console.WriteLine("Error: Failed to retrieve the required data from the DataBase.\n{0}", ex.Message);
return;
}
finally
{
myAccessConn.Close();
}

arrow
arrow
    全站熱搜

    戮克 發表在 痞客邦 留言(0) 人氣()