נשלח בתאריך: 02 September 2009 בשעה 14:51 | | IP רשוּם
|
|
|
|
יש לי בעיה דומה לבעיה שמישהו כבר כתב פה אבל לי אין Exception. הקוד רץ וההודעה היא שהשמירה בוצעה בהצלחה אבל כשאני פותחת את הטבלה אין בפנים שום נתון.
הקוד בC# הוא:
private string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|tables.mdb;";
MyConn = new OleDbConnection(connectionString);
try
{
MyConn.Open();
StrSql = "INSERT into phone(phone_number1,phone_number2,city,type,first_name,last_name)" + "VALUES(' + Phone1 + ', ' + Phone2 + ', ' + City + ', ' + type + ' , ' + Fname + ', ' + Lname + ')";
MyComand = new OleDbCommand(StrSql, MyConn);
MyComand.ExecuteNonQuery();
MessageBox.Show(" ");
}
catch (Exception ex)
{
MessageBox.Show("Can't add this word to the table " + ex.Message);
}
finally
{
MyConn.Close();
}
}
|