0

我有一个代码,其中我使用查询字符串方法将数据插入 SQL 服务器,如下所示,

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;


public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

        if (Request.QueryString["x"] != null)
        {
            if (Request.QueryString["y"] != null)
            {
                insertData();
            }
        }
     //   else
      //  {
     //         Response.Redirect("http://localhost:53627/Default.aspx");
     //   }


    }
    public void insertData()
    {
        using (SqlConnection con = new SqlConnection(GetConnectionString()))
        {
            con.Open();
            try
            {
                using (SqlCommand cmd = new SqlCommand("INSERT INTO Test(x, y) VALUES(@x, @y)", con))
                {
                    cmd.Parameters.Add(new SqlParameter("x", Request.QueryString["x"]));
                    cmd.Parameters.Add(new SqlParameter("y", Request.QueryString["y"]));
                    cmd.ExecuteNonQuery();
                }
            }   
            catch (Exception Ex)
            {
               // Console.WriteLine("Unable To Save Data. Error - " + Ex.Message);
                Response.Write("Unable To Save Data. Error - " + Ex.Message);
            }
        }

    }
    public string GetConnectionString()
    {
        //sets the connection string from the web config file "ConnString" is the name of the Connection String
        return System.Configuration.ConfigurationManager.ConnectionStrings["MyConsString"].ConnectionString;
    }
}

现在在这个当前代码中,我需要添加系统的日期和时间以及 x 和 y 值......有什么指导吗?

4

1 回答 1

3

您可以在表测试中添加一列,我们将其称为 CreatedDate 并将默认值设置为GETDATE()

默认

指定在插入期间未显式提供值时为列提供的值。DEFAULT 定义可以应用于除定义为时间戳的列或具有 IDENTITY 属性的列之外的任何列。如果为用户定义类型列指定了默认值,则该类型应支持从 constant_expression 到用户定义类型的隐式转换。删除表时删除 DEFAULT 定义。只有一个常量值,比如字符串;标量函数(系统、用户定义或 CLR 函数);或 NULL 可以用作默认值。为了保持与早期版本的 SQL Server 的兼容性,可以将约束名称分配给 DEFAULT。

获取日期()

将当前数据库系统时间戳作为日期时间值返回,不带数据库时区偏移量。此值源自运行 SQL Server 实例的计算机的操作系统。

SQL 小提琴演示

事后考虑,如果您想从 C# 发送 DateTime 值,您可以使用DateTime.Now将代码更改为类似的内容

获取一个 DateTime 对象,该对象设置为此计算机上的当前日期和时间,以本地时间表示。

using (SqlCommand cmd = new SqlCommand("INSERT INTO Test(x, y, dt) VALUES(@x, @y, @dt)", con))
{
    cmd.Parameters.Add(new SqlParameter("x", Request.QueryString["x"]));
    cmd.Parameters.Add(new SqlParameter("y", Request.QueryString["y"]));
    cmd.Parameters.Add(new SqlParameter("dt", DateTime.Now));
    cmd.ExecuteNonQuery();
}
于 2013-10-22T04:17:10.400 回答