ACCESS数据库中使用SQL语句插入时间的方法?
例如一下代码,时间插入出现了问题OleDbCommanddataiSortHistory=newOleDbCommand(string.Format("insertint...
例如一下代码,时间插入出现了问题
OleDbCommand dataiSortHistory = new OleDbCommand(string.Format("insert into iSortStall(车库名称,状态,车牌号,车位号,用户口令,类型,进入时时间,费用标准)values('{0}','空闲','无',{1},0,无,'#2015年04月01日00:00:00#',0)", 车库名称.Text, n), iCentre.iSortcon);
求高手大神帮助,感谢
注:麻烦提供一哈正确代码 展开
OleDbCommand dataiSortHistory = new OleDbCommand(string.Format("insert into iSortStall(车库名称,状态,车牌号,车位号,用户口令,类型,进入时时间,费用标准)values('{0}','空闲','无',{1},0,无,'#2015年04月01日00:00:00#',0)", 车库名称.Text, n), iCentre.iSortcon);
求高手大神帮助,感谢
注:麻烦提供一哈正确代码 展开
3个回答
展开全部
SQL语句往Oracle数据库中插入日期型数据(to_date的用法)
INSERT INTO FLOOR VALUES ( to_date ( '2007-12-20 18:31:34' , 'YYYY-MM-DD HH24:MI:SS' ) ) ;
查询显示:2007-12-20 18:31:34.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-12-14 14:10' , 'YYYY-MM-DD HH24:MI' ) );
查询显示:2007-12-14 14:10:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-12-14 14' , 'YYYY-MM-DD HH24' ) );
查询显示:2007-12-14 14:00:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-11-15' , 'YYYY-MM-DD' ) );
查询显示:2007-11-15 00:00:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-09' , 'YYYY-MM' ) );
查询显示:2007-09-01 00:00:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007' , 'YYYY' ) );
查询显示:2007-05-01 00:00:00.0
INSERT INTO FLOOR VALUES ( to_date ( '2007-12-20 18:31:34' , 'YYYY-MM-DD HH24:MI:SS' ) ) ;
查询显示:2007-12-20 18:31:34.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-12-14 14:10' , 'YYYY-MM-DD HH24:MI' ) );
查询显示:2007-12-14 14:10:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-12-14 14' , 'YYYY-MM-DD HH24' ) );
查询显示:2007-12-14 14:00:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-11-15' , 'YYYY-MM-DD' ) );
查询显示:2007-11-15 00:00:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007-09' , 'YYYY-MM' ) );
查询显示:2007-09-01 00:00:00.0
-------------------
INSERT INTO FLOOR VALUES ( to_date ( '2007' , 'YYYY' ) );
查询显示:2007-05-01 00:00:00.0
展开全部
时间值直接用#括起来就好,外面不要再用引号
#2015年04月01日00:00:00#
祝你成功!
#2015年04月01日00:00:00#
祝你成功!
追问
数据库格式:yyyy/mm/dd/hh:nn:ss
Sql语句:#2015/04/01/00:00:00#
没有起作用
追答
确定是时间字段的问题吗?
values('{0}','空闲','无',{1},0,无,'#2015年04月01日00:00:00#',0)
{1}这是什麼?不带引号的无又是什么?
祝你成功!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 插入数据 => 表格 16 LogRecord(操作日志)
// 参数: ComputerName ---- 计算机名称
// IpAddress ---- IP 地址
// ConcreteOperation ---- 具体的操作
// updateTime ---- 更新时间
// remark ---- 备注信息
// 返回值: true ---- 插入数据成功. false ---- 插入数据失败
//
bool CDvDatabase::Insert_LogRecord(CString ComputerName, CString IpAddress, CString ConcreteOperation,\
COleDateTime updateTime , CString remark)
{
wchar_t sqlStatement[STATEMENT_SIZE] = { 0 };
swprintf_s(sqlStatement, (size_t)(sizeof(sqlStatement)/sizeof(wchar_t)), \
_T("insert into LogRecord values (\'%s\', \'%s\', \'%s\', #%s#, \'%s\');"), \
ComputerName, IpAddress, ConcreteOperation, \
(LPTSTR)(LPCTSTR)updateTime.Format(_T("%Y-%m-%d %H:%M:%S")), (LPTSTR)(LPCTSTR)remark);
/*return */ bool bRet = m_DBado.Execute((LPCTSTR)sqlStatement);
m_DBado.CloseConnection();
return bRet;
}
供参考
// 插入数据 => 表格 16 LogRecord(操作日志)
// 参数: ComputerName ---- 计算机名称
// IpAddress ---- IP 地址
// ConcreteOperation ---- 具体的操作
// updateTime ---- 更新时间
// remark ---- 备注信息
// 返回值: true ---- 插入数据成功. false ---- 插入数据失败
//
bool CDvDatabase::Insert_LogRecord(CString ComputerName, CString IpAddress, CString ConcreteOperation,\
COleDateTime updateTime , CString remark)
{
wchar_t sqlStatement[STATEMENT_SIZE] = { 0 };
swprintf_s(sqlStatement, (size_t)(sizeof(sqlStatement)/sizeof(wchar_t)), \
_T("insert into LogRecord values (\'%s\', \'%s\', \'%s\', #%s#, \'%s\');"), \
ComputerName, IpAddress, ConcreteOperation, \
(LPTSTR)(LPCTSTR)updateTime.Format(_T("%Y-%m-%d %H:%M:%S")), (LPTSTR)(LPCTSTR)remark);
/*return */ bool bRet = m_DBado.Execute((LPCTSTR)sqlStatement);
m_DBado.CloseConnection();
return bRet;
}
供参考
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询