甲骨文查询生成
本文关键字:查询 甲骨文 | 更新日期: 2023-09-27 18:36:33
我有一个文本框,里面填充了日期选择器的日期(日期类型)。
我有一个包含 3 列(名称,发件人日期(日期),日期(日期))的表格。在按钮单击活动时,它应仅显示那些在开始日期和结束日期之间指定日期的名称。
我想帮我一些帮助
string v = System.Configuration.ConfigurationManager.ConnectionStrings["harish"].ConnectionString;
con = new OracleConnection(v);
con.Open();
cmd = new OracleCommand("________", con);
你甚至没有尝试。 为此,请尝试使用Oracle和MSDN。
但既然你陷入了困境....
var cmd = new OracleCommand();
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "INSERT INTO Table (name, fromDate, toDate)VALUES(:nameVal, :fromVal, :toVal)";
cmd.Parameters.Add(new OracleParameter(":fromVal", OracleType.DateTime)).Value = fromDateVal;
cmd.Parameters.Add(new OracleParameter(":toVal", OracleType.DateTime)).Value = toDateVal;
cmd.ExecuteNonQuery();
//close the connection after done.... release the resources