临时表问题-----在线等
ls_a1=select x1,x2...xn into #temp from tabal_1
ls_a2=select a.*,b.y from table_1 a(nolock),#1 b(nolock) where a.z=b.z and ...
Set ftsqf = Server.CreateObject("ADODB.Recordset")
cmdTemp.CommandText = ls_a2
cmdTemp.CommandType = 1
cmdTemp.CommandTimeout = 0
Set cmdTemp.ActiveConnection = ELEC
ftsqf.Open cmdTemp, , 1, 1
为何提示“ODBC 驱动程序不支持所需的属性”
请给出一个相关的临时表例子,谢谢!