Esempio n. 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            InsertCommand inCommand = new InsertCommand("TestUser", conStr);
            int           count     = inCommand.AddParameter("birthday", DateTime.Now).AddParameter("go", DateTime.Now).Insert();

            Tips(count, "插入方法一");
        }