我希望我的 C# 应用程序获取计算机的时间和日期,但它只获取时间而不是日期,所以这里是代码。
ApareceCrudLib b = new ApareceCrudLib("localhost", "root", "", "cashieringdb");
string theDate = DateTime.Now.ToShortTimeString();
string query = "INSERT INTO sales (price, user, date) " +
"VALUES(" +
"'" + txtQuant.Text + "'," +
"'" + txtLog.Text +"'," +
"'" + theDate +"')";
b.mysqlInsert(query);
这是我的 MySql 数据库结果。(不要介意用户错误地包围的 lordens)。
这是我的日期结构设置为 Varchar,长度/值设置为 10。
无论如何,我只是注意到我的 C# 应用程序中的代码 TimeString 和 DateString 有没有办法让它们像时间和日期字符串一样?