如何在ASP里建立表格?
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
<%
Dim conn
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "DSN=blah"
' 建立连接
Dim strSQL
strSQL = "CREATE TABLE test (name varchar(50), age int)"
conn.Execute strSQL
%>
时间: 2024-10-30 16:51:37