asp根據表的資料量自動生成列數

時間 2022-02-27 16:45:03

1樓:匿名使用者

<%dim tabelname,i,rs

tablename="表名"  '這裡設定資料庫中的特定表名

set rs=server.createobject("adodb.recordset")

對指定資料庫表進行查詢

response.write ""

response.write ""

for i=0 to rs.fields.count-1

輸出表中所有欄位名

next

response.write ""

'開始輸出所有記錄值

do while not rs.eof

response.write ""

for i=0 to rs.fields.count-1

response.write ""

if isnull(rs.fields(i).value) then

response.write "null"

elseif rs.fields(i).value="" then

response.write "空"

else

end if

response.write ""

next

rs.movenext

response.write ""

loop

response.write ""

%>

2樓:匿名使用者

想問什麼?不太明白

一般用for to next來生成

3樓:天天asp開發

可以去問天天asp家園的技術們哦

大資料量查詢問題,如何解決大資料量的查詢問題

流水無情 查詢需要確認你需要什麼樣的資料,如果where條件中的條件從主表就可以找出來,完全可以先主表先查詢,這樣資料量就銳減了,語法 select from select from 主表 where 條件 temp left join 其他表,left join 其他表只是對主表的補充和延伸罷了,...

請問哪位高手知道JSON資料最大的資料量是多大

這樣做不太好吧,轉換貌似很花時間的 jquery ajax get方式返回值最大長度是多少 饅頭上線了 get方式抄返回和post方式返回值 襲,都是返回的網頁形式的數bai據.html 或 xml 或 json 等du.暫時沒看到最大限制.如果你zhi說dao的是傳送長度的話,http協議對url...

EXCEL表,把表中的資料自動填充到另表中

表1為原表,表2為彙總表。表2的a1單元格內輸入 表1 a5 右拖到e列,下拉與表1的列數相同。f2中輸入 if and a2 a1,b2 b1,c2 c1,d2 d1 sumproduct a 2 a 100 a2 b 2 b 100 b2 c 2 c 100 c2 d 2 d 100 d2 e ...