javascript在ie下連線資料庫

2021-08-29 17:43:40 字數 928 閱讀 4001

rs.recordcount獲得查詢的結果數

//連線access

//以當前頁面檔案為基礎,找到檔案所在的絕對路徑。

var filepath = location.href.substring(0, location.href.indexof("cnt.htm"));

var path = filepath + "mydata.mdb";

//去掉字串中最前面的"files://"這8個字元。

path = path.substring(8);

var updatecnt = 0;

//生成查詢和更新用的sql語句。

var sqlselcnt = "select count from [count] where id = 'count'";

var sqlupdcnt = "update [count] set [count] = '";

//建立連線,並生成相關字串 

var con = new activexobject("adodb.connection");

con.provider = "microsoft.jet.oledb.4.0";

con.connectionstring = "data source=" + path;

con.open;

var rs = new activexobject("adodb.recordset");

rs.open(sqlselcnt, con);

while (!rs.eof)

rs.close();

rs = null;

sqlupdcnt = sqlupdcnt + updatecnt + "'";

con.execute(sqlupdcnt);

con.close();

con = null;

}

AJAX在IE下的除錯

ajax在ie下的除錯 如果是ie9,而自帶的f12工具,可除錯ajax.可是我的是ie8.然後使用ie web developer v2.4.1.122 可是http monitor 老是奔潰。pass 最後只好用抓包工具了。w porer 1.3,先附加到ie程序,然後監聽就可以了,可以看到發出...

php主頁在IE下無法顯示

伺服器架構是 linux apache mysql php 資料夾 css,img,templates 包含檔案index.html 檔案 index.php 其中index.php的 如下 templates index.html的 如下 在非ie下可以正常顯示,但不知為什麼,在ie下訪問inde...

UpLoadify在IE下相容問題

一 在ie9 ie10不能點選的問題解決 解決方法 進入uploadify的js檔案中,搜尋swfupload.prototype.getflashhtml,找到它對應的語句,將方法全部替換為以下內容 swfupload.prototype.getflashhtml function return ...