主题:看看怎么错了,create table错在哪
sql = "create table" & accessdb.Text & "("
jj = 1
While jj < cols - 1
f = fieldn(jj) & "" & t
sql = sql & f & ","
jj = jj + 1
Wend
f = fieldn(jj) & "" & t
sql = sql & f & ")"
db.Execute (sql)
请各位高手给看看create table 是怎么错了?非常感谢!
jj = 1
While jj < cols - 1
f = fieldn(jj) & "" & t
sql = sql & f & ","
jj = jj + 1
Wend
f = fieldn(jj) & "" & t
sql = sql & f & ")"
db.Execute (sql)
请各位高手给看看create table 是怎么错了?非常感谢!