标签为 Database 的存档
用Flex制作了一个数据库管理器
Author: cbm7 十 2005
最近用Flex制作了一个数据库管理器.在Flash2004时代就很想实现的一个功能,一直没有时间,现在用Flex做了,
可以在线编辑网站的数据库.不需要借助其他的工具连接,B/S,又方便些啦!..
截图如下:
- 6 Comments , 12,496 Hits
- Filed under: 站点的那些事儿
-
Tags: Database, Flex
ASP遍历数据库
Author: cbm7 十 2005
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!--#include file="inc/sql.asp"--> <% Set rstSchema = db.OpenSchema(20) Do Until rstSchema.EOF '遍历数据库表 if rstSchema("TABLE_TYPE")="TABLE" then response.write rstSchema("TABLE_NAME") & ":" set rs=db.execute("select * from " & rstSchema("TABLE_NAME")) for i=0 to rs.fields.count-1 '遍历表中字段 response.write rs(i).name &" " next end if response.write "<br>" rstSchema.MoveNext Loop %> |