asp.net(vb)里动态创建数据表的问题
写完这条语句
Dim str As String = "crate table Trim(TextBox3.Text)(ID AutoNumber primary key,title text(20),content Memo,time Date/Time,author text(20),hits Number )"
之后就不知怎样写了,上网找了很久都是说conn.execute(str),但是在我打conn的时候弹出的对话框都没有这个execute的。
这个conn.execute()应该是winform的吧不知在webform里是怎样写的
[解决办法]
Dim str As String = "create table " & TextBox3.Text & "(ID Counter primary key,title text(20),content Memo,times Date,auther text(20),hits Number,input text(20),edit text(20),imgsrc text(150) )"
Dim conn As New ADODB.Connection
conn.ConnectionString = CONN_STRING_NON_DTC
conn.Open()
conn.Execute(str)
conn.Close()
CONN_STRING_NON_DTC是数据库连接字符串。还要添加引用,引用ado.net