這篇文章主要介紹了asp實現(xiàn)獲取MSSQL數(shù)據(jù)庫表指定條件行數(shù)的函數(shù)的的相關資料,需要的朋友可以參考下
代碼如下:
'數(shù)據(jù)庫表行數(shù)函數(shù),這是取表的行數(shù)
Function GetTblRows(TblName)
'如果TblName表名值為空,則
if TblName="" Then
GetTblRows="未知TblName"
exit Function
Else
set rec = server.createobject("adodb.recordset")
SQL="EXEC sp_spaceused "&TblName
rec.open sql,conn,1,1
GetTblRows=Trim(rec("rows"))
rec.close
set rec=nothing
end if
End Function
如何使用?
代碼如下:
<%=GetTblRows("表格名稱")%>
以上就是本文所述的全部內容了,希望大家能夠喜歡。
更多信息請查看IT技術專欄