深圳升蓝软件
数据库开发 .Net技术  |  ASP技术 PHP技术 JSP技术 应用技术类   
Hiblue Software

数据库相关

技术资料 > ASP技术 > 数据库相关
一个简单的SQL语句执行器
大至分为三个文件:ljmdb.asp(连接库文件)、entice.asp(sql语句执行主界面)、entice2.asp(select记录集) ====================================ljmdb.asp <% set conndb=server.createobject("ADODB.CONNECTION") constr="provider=microsoft.jet.oledb.4.0;data source="&server.mappath("/aspsky.myip.org/e……
ADO连接数据库字符串大全(VP,Excel,文本,Sybase,.NET
This page contains sample ADO connection strings for ODBC DSN / DSN-Less, OLE DB Providers, Remote Data Services (RDS), MS Remote, MS DataShape. Also included are ADO.NET connection strings for each .NET Managed Provider (SQLClient, OLEDB, and ODBC). These sample connection strings are comp……
如何正确显示数据库中的图片
文件1:showimage.aspx.cs namespace ImageResizing { public class MainDisplay : System.Web.UI.Page { public void Page_Load(System.Object sender, System.EventArgs e) { try { System.Int32 _ImgID = System.Convert.ToInt32(Request.QueryString["ImgID"]); System.Int32 _height = System.Con……
ASP和SQL结合处理时间应用
在开发数据库应用中,经常会遇到处理时间的问题,如查询指定时间的记录等。下面就这些常见的问题,结合自己的一些经验,和大家探讨一下这类问题。   首先介绍一下,SQL Server里处理时间的几个主要函数的用法: getdate()函数:取得系统当前的日期和时间。返回值为datetime类型的。 用法:getdate() 例子: s……
显示数据库中的存储过程
It's no easy trick to see stored procedures in a database programmatically with a scripting language like ASP. If you're using MS Access, you're out of luck. Access provides no way to see the actual meat of a stored procedure although you can get the names of the procedures in the database with th……
利用ASP存取各种常用类型数据库(4)
  DBPath = "SourceDB=" & Server.MapPath( "DBC数据库文件名" )   ‘ 连接数据库   conn.Open Driver & SourceType & DBPath   Set CreateDbcRecordset = Server.CreateObject("ADODB.Recordset")   ‘ 打开数据表,参数二为Connection对象   CreateDbcRecordset.Open "数据表名或Select语句", conn, 2……
利用ASP存取各种常用类型数据库(3)
  Function CreateSecuredMdbRecordset( 数据库文件名, 数据表名或Select语句,password )   Dim conn,Provider,DBPath   ‘ 建立Connection 对象   Set conn = Server.CreateObject("ADODB.Connection")   Provider = "Provider=Microsoft.Jet.OLEDB.4.0;"   DBPath = "Data Source=" & Server.MapP……
利用ASP存取各种常用类型数据库(2)
  Microsoft Excel Driver     Excel      Microsoft Visual FoxPro Driver   Dbc      SQLOLEDB.1           SQL Server7.0      二、连接数据库和打开数据表   不同的数据库连接方法不一样(即建立Connection的实例方法不一样),一旦建立Connection实例完毕,利用Recor……
利用ASP存取各种常用类型数据库(1)
  摘要:   本文讨论利用ASP存取DBF、DBC、MDB、Excel、SQL Server型数据的方法及函数实现,最后给出一个利用本文提供的函数存取Excel型数据库的例子,对企事业数据重用及共享具有很强的实际意义。   关键词:   ASP数据库存取 DBF DBC MDB Excel SQL Server   前言   在Internet/Intranet网页上……
在线压缩Access数据库
While working on BuildDB/Buildapp online Demo, I developed a little function that will compact Access databases over the web. Here's a "no-frills" page that'll compact the databases for you. One problem with Access databases is that "holes" are created when records are deleted, making the database……
ASP数据库恢复的代码
文件4:RestoreDB.asp <%@ Language=VBScript %> <HTML> <HEAD> <META name=VI60_defaultClientScript content=VBScript> <META NAME="GENERATOR" Content="Microsoft FrontPage 4.0"> <SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript> <!-- Sub btnbak_onclick ……
ASP备份数据库
文件1:BackupDB.asp <%@ Language=VBScript %> <HTML> <HEAD> <META name=VI60_defaultClientScript content=VBScript> <META NAME="GENERATOR" Content="Microsoft FrontPage 4.0"> <SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript> <!-- Sub btnbak_onclick ……
读取Access数据库表名实例
kendylan 于 8/30/2001 12:28:41 PM 加贴在 Joy ASP ←返回版面: <% strConn="DBQ="+server.mappath("kendylan.mdb")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};" set objConn=server.createobject("Adodb.connection") objConn.open strConn set rsSchema=objConn.openSchema(20) rsSchema.mov……
ASP直接调用EXCEL数据的例子(不用ODBC)
扑咚扑咚 于 8/30/2001 4:52:49 PM 加贴在 Joy ASP ←返回版面: 例子: 在"c:\excel\book1.xls"存在一个EXCEL表book1.xsl,表的结构如下: 1 序号 名称 金额 2 1 张三 100 3 2 李四 200 4 3 王五 300 序号字段不为空 注意:excel 起始行是1而不是为0 <……
利用ASP存取各种常用类型数据库(4)
利用ASP存取各种常用类型数据库(4)      DBPath = "SourceDB=" & Server.MapPath( "DBC数据库文件名" )   ‘ 连接数据库   conn.Open Driver & SourceType & DBPath   Set CreateDbcRecordset = Server.CreateObject("ADODB.Recordset")   ‘ 打开数据表,参数二为Connection对象   CreateDbcRec……
利用ASP存取各种常用类型数据库(3)
利用ASP存取各种常用类型数据库(3)      Function CreateSecuredMdbRecordset( 数据库文件名, 数据表名或Select语句,password )   Dim conn,Provider,DBPath   ‘ 建立Connection 对象   Set conn = Server.CreateObject("ADODB.Connection")   Provider = "Provider=Microsoft.Jet.OLEDB.4.0……
利用ASP存取各种常用类型数据库(2)
利用ASP存取各种常用类型数据库(2)      Microsoft Excel Driver     Excel      Microsoft Visual FoxPro Driver   Dbc      SQLOLEDB.1           SQL Server7.0      二、连接数据库和打开数据表   不同的数据库连接方法不一样(即建立Connection的实例方法不一……
利用ASP存取各种常用类型数据库(1)
利用ASP存取各种常用类型数据库(1)      摘要:   本文讨论利用ASP存取DBF、DBC、MDB、Excel、SQL Server型数据的方法及函数实现,最后给出一个利用本文提供的函 数存取Excel型数据库的例子,对企事业数据重用及共享具有很强的实际意义。   关键词:   ASP数据库存取 DBF DBC MDB Excel SQL Serve……
压缩并修复Access数据库(推荐)
Compact and Repair You can use the "Compact and Repair" function in Access from ASP code. The following code is an example of how this can be done. Note that when you decide to "Compact and Repair" your Access database, some autonumbers can be changed. Access makes all autonumbers consecu……
在ASP中利用Oracle Object for OLE访问Oracle 8
ASP(Active Server Pages)是微软公司为开发互联网络应用程序所提出的工具之一,它是一种类似HTML(Hypertext Markup Language超文本标记语言)、Script与CGI(Common Gateway Interface通用网关接口)的结合体,但是其运行效率却 比CGI更高、程序编制也比HTML更方便且更有灵活性,程序安全性及保密性远比Script好。因此ASP是……
« [1][2][3][4][5].. » 20条/页 共136
Copyright © 2001-2008 Shenzhen Hiblue Software Team All rights reserved