我使用备忘录编辑来显示地址,所以它包含 4 行。如何获得这 4 行以及如何将其存储在 Access 数据库中?通常,如果它的 EditText 我们使用此代码来存储
string inno = textEdit12.Text.ToString();
OleDbCommand top = new OleDbCommand("INSERT INTO invoice_top(invoice_number,order_number,customername,status,subtotal,tax,total,[date]) VALUES (" + inno + "," + odrno + ",'" + name + "',"+ chk1 +" ,"+ subtottal +","+ tax +","+total+",'"+date+"')", conn);
top.ExecuteNonQuery();
此代码适用于 EditText。如何为 MemoEdit 获取和存储它???帮我。