① 如何往資料庫中插入日期格式的數據
一個資料庫文件中有很多表
dim
con
as
adodb.connection
dim
zrst
as
adodb.recordset
set
zcon=new
adodb.connection
con.cursorlocation
=
aseclient
con.connectionstring
=
"provider=microsoft.jet.oledb.4.0;data
source="
&
路徑
&
";persist
security
info=false"
con.open
'for
i=1
to
100
con.execute
"insert
*
into
table1(f1,f2)
values("+chr(34)+"張三"+chr(34)+","+chr(34)+"李四"+chr(34)+")"
'table1是表名
'next
i
② java.sql.SQLException: ORA-01843: 無效的月份,查詢oracle資料庫的時候,timestamp類型的欄位報錯
估計是你的日期格式不對,資料庫不能識別。可以查看你的日期類型是sqldate還是utildate。然後換著試試。