【编者按】网学网asp频道为大家收集整理了“在线数据库管理工具(db007) v1.5“提供大家参考,希望对大家有所帮助!
复制代码 代码如下:
<!--
''********************************
''* 用途:
''^ 以视图界面方式在线处理access、sql数据库
''* 作者:官世杰
''* 创建日期:2006-5-28
''* 2006-06-04 增加数据修改功能
''* 2006-06-10 增加了在空表中插入数据功能
''* 2006-09-8 增加修改字段名和表名功能,修正部分错误
''* 执行sql,如果是 select 就返回结果,否则返回执行结果
''* 本
程序可以免费使用,转载请保留此信息
''********************************
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>在线数据库管理工具 db007 1.5</title>
<style type="text/css">
<!--
body,td,th {font-family: "宋体";font-size: 12px;}
form {margin:0px;padding:0px;}
body {margin:5px;SCROLLBAR-ARROW-COLOR:#666666;SCROLLBAR-FACE-COLOR:#DDDDDD;SCROLLBAR-DARKSHADOW-COLOR:#999999;SCROLLBAR-HIGHLIGHT-COLOR:#FFFFFF;SCROLLBAR-3DLIGHT-COLOR:#CCCCCC;SCROLLBAR-SHADOW-COLOR:#FFFFFF;SCROLLBAR-TRACK-COLOR:#EEEEEE;}
input { border-width: 1px;border-style:solid;border-color: #CCCCCC #999999 #999999 #CCCCCC;height: 16px;}
td {background:#FFF;}
textarea {border-width: 1px;border-style: solid;border-color: #CCCCCC #999999 #999999 #CCCCCC;}
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a:active {text-decoration: none;}
.fixSpan {width:150px;white-space:nowrap;word-break:keep-all;overflow:hidden;text-overflow:ellipsis;}
-->
</style>
</head>
<body>
<%
if request("key") = "db" then
session("dbtype") = request("dbtype")
session("dbstr") = request("dbstr")
response.redirect "?"
end if
if request("key") = "createdatabase" then
call createdatabase()
end if
if session("dbtype") = "" or session("dbstr") = "" then
%>
<form action="?key=db" method="post" name="dbt">
<br>
连接类型:
<input name="dbtype" type="radio" value="access" onClick="dbstr.value=''Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Password=;Data Source=<%=server.mappath("/")&"\"%>''" checked>
ACCESS
<input disabled="disabled" type="radio" name="dbtype" value="sql" onClick="dbstr.value=''driver={SQL Server};database=;Server=;uid=;pwd=''">
SQL<br><br>
连接字符:<input name="dbstr" type="text" id="dbstr" size="120" value="Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Password=;Data Source=<%=server.mappath("/")&"\"%>">
<input type="submit" name="Submit" value="连接" /><br><br>
注:access请使用绝对路径,本文件路径:<%=server.MapPath("db007.asp")%>
</form>
<form name="createdatabase" method="post" action="?key=createdatabase">
<font color=red>创建数据库:</font>路径
<input name="dataname" type="text" value="<%=server.MapPath("/")&"\database.mdb"%>" size="100">
<input type="submit" name="Submit" value="创建">
</form>