我正在使用 .NET 编写 SQL 查询以获取以下数据:
DataReader d = null;
d.executeQuery("select * from table where updated_date >= '11/6/2013 12:00:00'");
我不想硬编码日期时间。如何初始化字符串并插入到查询中?我希望它是
Datetime value = new Datetime(2013, 11, 6, 12, 0, 0);
select * from table where updated_date >= 'value'"
这可能吗?
限制是我有一组给定的 API 来查询数据库和一个用户定义的 readerobject。这是我的查询 API:
公共无效执行查询(字符串查询)