由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 怎样用ASP向Foxpro里插入Date型数据?
相关主题
ASP高人们帮忙看看这几行 SQL codes的问题,谢乐!Help on Sql server huge table performance
Access门外汉问题求教trigger vs. log ?
[转载] ASP问题: Operation must use an updateable queryHow to handle inserting value to Identity column in sql server 2005
a simple question about T-SQLMS T-SQL 问题
Problem when using SQL " Insert...." to AutoNumber.数据库入门知识之3(关系数据库)
how to improve the performance of Oracle Insert operation?如何做到?不可不看
urgent help! insert value into table foxpor
Set autocommit off第二课 见识一下面向对象的编程
相关话题的讨论汇总
话题: 01话题: strsql话题: date话题: testdate话题: foxpro
进入Database版参与讨论
1 (共1页)
k**y
发帖数: 320
1
怎样用ASP向Foxpro里插入Date型数据?
我试了
strSQL="insert into testDate values ('01/01/01')"
Set sqlResult=Conn.Execute(strSQL)
strSQL="insert into testDate values (cdate('01/01/01'))"
strSQL="insert into testDate values (date(01,01,01))"
...
都不对 :(
s*****c
发帖数: 36
2
如果testDate
只有一个日期型的FIELD,可能是因为DATE型数据的FORMAT问题,
比如: 19990103, 01/03/1999, 01-03-1999.
建议: 先打印出
DATE()函数的结果,根据当前的FORMAT来写一个INSERT SQL.

【在 k**y 的大作中提到】
: 怎样用ASP向Foxpro里插入Date型数据?
: 我试了
: strSQL="insert into testDate values ('01/01/01')"
: Set sqlResult=Conn.Execute(strSQL)
: strSQL="insert into testDate values (cdate('01/01/01'))"
: strSQL="insert into testDate values (date(01,01,01))"
: ...
: 都不对 :(

1 (共1页)
进入Database版参与讨论
相关主题
第二课 见识一下面向对象的编程Problem when using SQL " Insert...." to AutoNumber.
请教how to improve the performance of Oracle Insert operation?
介绍一些FoxPro专业网站urgent help! insert value into table
urgent:how to import visual foxpro into sasSet autocommit off
ASP高人们帮忙看看这几行 SQL codes的问题,谢乐!Help on Sql server huge table performance
Access门外汉问题求教trigger vs. log ?
[转载] ASP问题: Operation must use an updateable queryHow to handle inserting value to Identity column in sql server 2005
a simple question about T-SQLMS T-SQL 问题
相关话题的讨论汇总
话题: 01话题: strsql话题: date话题: testdate话题: foxpro