搜索列表
-
ASP连接数据库的全能代码
【ASP编程】ASP连接数据库的全能代码 '解决了ACCESS数据库路径的问题! '采用DBType=0或DBType=1来区分AC库还是MSSQL库 '具体采用AC库时应注意的事项,请看程序说明 -------------------------------------------------------------------------------- Dim DBType...
ASP连接数据库的全能代码 -
asp分页的一个类
【ASP编程】asp分页的一个类 在50,000条记录下测试过,速度比ado的那个要快多了 <% '************************************************************************************ '具体用法 Dim strDbPath Dim connstr Dim mp Set mp = New MyPage strDbPath&...
asp分页的一个类 -
Access 2000 数据库 80 万记录通用快速分页类
【ASP编程】代码本人优化过,测试通过 主要思路: 用一条语句统计(Count)出记录数(而不在查询时获得 RecordCount 属性), 缓存在 Cookies 中, 跳转时就不用再次统计. 使用 ADO 的 AbsolutePage 属性进行页面跳转即可. 为方便调用而写成类, 代...
Access2000数据库80万记录通用快速分页类 -
用asp实现的数据库中存取文件的代码
【ASP编程】************************************************************************* '** '** 使用 ADODB.Stream 保存/读取文件到数据库 '** 引用 Microsoft ActiveX Data Objects 2.5 Library 及以上版本 '** '** ----- 数据库连接字符...
用asp实现的数据库中存取文件的代码 -
用存储过程、GetRows()、抽取10万条数据的速度测试
【ASP编程】现有10W条数据,Access数据库保存 通过正常提取: 复制代码 代码如下:<% Set conn= Server.CreateObject("ADODB.Connection") c&Server.MapPath("db2.mdb") conn.Open connstr Set rs = Server.CreateObject ("A...
用存储过程、GetRows()、抽取10万条数据的速度测试 -
asp,VBscript语法错误,史上最全最详细最精确第1/3页
【ASP编程】ASP错误总结 -------------------------------------------------------------------------------- Microsoft VBscript语法错误(0x800A03E9)-->内存不足 Microsoft VBscript语法错误(0x800A03EA)-->语法错误 Microsoft VBscript语法错误(0x800A03EB)-->缺少 ':...
aspVBscript语法错误史上最全最详细最精确 -
简单的ASP中经常用到的代码[推荐]第1/4页
【ASP编程】用数据库语句 1.select 语句:命令数据库引擎从数据库里返回信息,作为一组记录。 2.insert into 语句:添加一个或多个记录至一个表。 3.update 语句:创建更新查询来改变基于特定准则的指定表中的字段值。 4.delete 语句:创建一个删除查询把记录从 from 子句列出...
简单的ASP中经常用到的代码 -
用ASP打开远端MDB文件的方法
【ASP编程】如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC&nbs...
用ASP打开远端MDB文件的方法 -
javascript asp教程第二课--转义字符
【ASP编程】并非是题外话:我们在第二课中要讲到的“转义字符”看起来与我们的课程并没有关系。事实并非如此。转义字符是在asp中使用javascript的一个完整部分。而第二课要讲的恰恰就是转义字符。没有转义字符,那么你为了写出有效率的asp脚本将会遇到许多的困难。抱歉,下面进入正题:以下是第二课的asp脚本。还记不记得在第一课的列子中,...
javascriptasp教程第二课--转义字符 -
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
javascript asp教程More About Recordsets
【ASP编程】Below we will attempt to access data from a database without knowing the column names. Clearly the best way to utilize data in your database is to keep track of your schema. Schema is the layout of data in your database. The concept is well beyond the scope of this web site, but it is ...
javascriptasp教程MoreAboutRecordsets -
javascript asp教程Recordset记录
【ASP编程】Recordset is another created/instanciated Object. It is a collection of data taken from a database. Recordset has 26 properties, 25 methods, 11 events, and two (2) collections. The vast majority of Recordset is beyond the scope of this web site. Quick Aside: The database we are using for l...
javascriptasp教程Recordset记录