第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

文本框到數(shù)據(jù)庫中的日期時(shí)間

文本框到數(shù)據(jù)庫中的日期時(shí)間

九州編程 2023-08-27 10:38:33
我試圖從文本框中獲取日期時(shí)間,它已經(jīng)準(zhǔn)備好了 MySql 日期時(shí)間的格式。DB中的列也是DateTime格式。但是,當(dāng)我按下按鈕將日期保存在數(shù)據(jù)庫中時(shí),整行將被清空。我在數(shù)據(jù)庫中嘗試了不同的格式和數(shù)據(jù)類型,沒有任何效果private void button4_Click(object sender, EventArgs e){    MySqlConnection conn = DBUtils.GetDBConnection();    conn.Open();    string startzeit = textBoxstartzeit.Text.ToString();    DateTime start = DateTime.Parse(startzeit);     string stopzeit = textBoxstopzeit.Text.ToString();    DateTime stop = DateTime.Parse(stopzeit);    string pstartzeit = textBoxstopzeit.Text.ToString();    DateTime pstart = DateTime.Parse(pstartzeit);    string pstopzeit = textBoxstopzeit.Text.ToString();    DateTime pstop = DateTime.Parse(pstopzeit);    MySqlCommand cmdnew = conn.CreateCommand();    cmdnew.CommandType = CommandType.Text;    cmdnew.CommandText = "UPDATE arbeitszeiten SET astart = '" + start + "',  astop = '" + stop + "', pstart = '" + pstart + "', pstop = '" + pstop + "' WHERE id = '" + dataGridView.CurrentCell.Value + "'";    cmdnew.ExecuteNonQuery();    conn.Close();}private void dataGridView_CellClick(object sender, DataGridViewCellEventArgs e){    try    {        MySqlConnection conn = DBUtils.GetDBConnection();        conn.Open();        MySqlCommand feedstartzeit = conn.CreateCommand();        feedstartzeit.CommandText = "SELECT astart FROM arbeitszeiten WHERE id = '" + dataGridView.CurrentCell.Value + "'";        DateTime start = Convert.ToDateTime(feedstartzeit.ExecuteScalar());        textBoxstartzeit.Text = start.ToString("yyyy-MM-dd HH:mm:ss");    }    catch (Exception ex)    {        MessageBox.Show(ex.Message, "Bitte ID ausw?hlen", MessageBoxButtons.OK, MessageBoxIcon.Error);    }}Button4 是上傳新數(shù)據(jù),dataGridView 部分用預(yù)先格式化的日期時(shí)間填充文本框,稍后由 Button4 上傳
查看完整描述

2 回答

?
海綿寶寶撒

TA貢獻(xiàn)1809條經(jīng)驗(yàn) 獲得超8個(gè)贊

您的日期時(shí)間格式應(yīng)該是您的服務(wù)器日期時(shí)間格式,如果您想使用日期時(shí)間,那么您應(yīng)該使用日期時(shí)間選擇器,這樣您就不需要轉(zhuǎn)換為日期時(shí)間。



查看完整回答
反對 回復(fù) 2023-08-27
?
天涯盡頭無女友

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超9個(gè)贊

好吧,Jon Skeet 建議的參數(shù)化 sql 請求解決了問題。



查看完整回答
反對 回復(fù) 2023-08-27
  • 2 回答
  • 0 關(guān)注
  • 279 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)