html的增刪改查
1. 怎麼在html中鏈接資料庫 能實現增刪改查,求解。
這個需要伺服器編程語言的支持,比如.net、php、java這些,配合跟html使用就可以做出一個又好看內容又豐富的網站了。
2. 怎樣使用HTML5中的Web SQL DataBase本地資料庫增刪改查
首先來看看怎樣創建資料庫:
1、創建資料庫
var db = window.openDatabase("mydata", "1.0","資料庫描述",20000);
//window.openDatabase("資料庫名字", "版本","資料庫描述",資料庫大小);
if(db)
alert("新建資料庫成功!");
2、怎樣連接資料庫
db.transaction(function(tx) {
tx.executeSql("CREATE TABLE test (id int UNIQUE, mytitle TEXT, timestamp REAL)");
});
上面是新建數據表!本地資料庫是通過db.transaction()函數來實現的,再看下面的代碼吧!
插入記錄:
db.transaction(function(tx) {
tx.executeSql("INSERT INTO test (mytitle, timestamp) values(?, ?)", ["WEB Database", new Date().getTime()], null, null);
});
更新記錄:
db.transaction(function(tx) {
tx.executeSql("update test set mytitle=? where mytitle = 'fsafdsaf'",['xp'],null,null);
});
查詢記錄:
db.transaction(function(tx) {
tx.executeSql("SELECT * FROM test", [],
function(tx, result) {
for(var i = 0; i < result.rows.length; i++){
document.write('<b>' + result.rows.item(i)['mytitle'] + '</b><br />');
}
}, function(){
alert("error");
});
});
刪除表:
db.transaction(function(tx) {
tx.executeSql("DROP TABLE test");
})
3. html網頁如何實現access的增刪改查·
html無法實現與資料庫連接更不用說刪除,修改了。
現在很多程序可生成html結尾的網頁,你也許會說他們怎麼可以,其實那個並非是真正的html,html可調用可執行的asp、php等來執行,只不過你看到的是表面現象,正真處理數據的還是動態網頁,就像我們現在網路提交問題,你也許看到是html結尾的網頁,為什麼能提交內容到資料庫呢,網路其實用的是偽靜態,並非真正的html靜態網頁。
4. java web 中連接資料庫並在HTML上進行增刪改查
ODBC 連接資料庫也不分J2EE ,JSEE啊?????
無論是J2EE還是JSEE都可以用ODBC連接資料庫啊。
區別是有的,
J2EE是做Web程序的,他面對的是大量的用戶同時訪問伺服器而且可能同時操作資料庫,如果你使用ODBC連接資料庫,所有的用戶都用同一個連接,頻繁的創建銷毀資源,這樣導致速度很慢,效率低,所以WEB開發一半採用連接池技術,用架構做,現在常用的是Hibernate。
我要是沒記錯的話
JSEE開發桌面應用程序多,這樣可能同時操作的人少,一般一個桌面程序也就一個人在操作,所以用ODBC也就足夠了,可是雖然解決了效率的問題但是沒有解決面向對象與面向關系的良好溝通。
J2EE ,JSEE後台的資料庫連接技術是通用的不分j2ee和JSEE吧
5. javascript實現增刪改查
使用XMLHttpRequest
下面給一共例子
function commitEdit(type, val, id) {
var http_request = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
http_request.overrideMimeType('text/xml');
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
http_request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!http_request) {
alert('Giving up :( Cannot create an XMLHTTP instance');
return false;
}
var sendData = "val=" + val + "&type=" + type + "&id=" + id;
http_request.onreadystatechange = function() {alertContents(http_request, type);};
url = "listUpdate.jsp";
http_request.open('POST', url, true);
http_request.setRequestHeader("Content-Length", sendData.length);
http_request.setRequestHeader("CONTENT-TYPE", "application/x-www-form-urlencoded");
http_request.send(sendData);
}
function alertContents(http_request, type) {
if (http_request.readyState == 4) {
var resTxt = trimString1(http_request.responseText);
if (resTxt == "-1") {
alert("內容不健康,添加錯誤!");
return;
}
if (type == "label") {
document.getElementById("listLabel").innerHTML = resTxt;
document.getElementById("addLabelLink").innerHTML = "修改標簽";
} else if (type == "addLabel") {
document.getElementById("listLabel").innerHTML = resTxt;
document.getElementById("listLabelTr").style.display = 'block';
document.getElementById("addLabelLink").innerHTML = "修改標簽";
document.getElementById("addLabelLink").href = "javascript:chngLabel();";
} else if (type == "listComment") {
document.getElementById("listReviewContext").innerHTML = resTxt;
} else if (type == "addFavorite") {
alert(resTxt);
}
}
}
6. html5增刪改查範例源代碼結合資料庫的 源碼
這個需要配合後台服務才行
單獨的html沒法操作資料庫
7. php中一個html頁面實現增刪改查
增加:insert into 表名(欄位1,欄位2,...) values('值1','值2',....) where 條件;
刪除:delete 表名
修改:update 表名 set 欄位名='值' where 條件;
查詢:select 欄位名 from 表名 where 條件;
8. JavaScript要求:HTML元素的增刪改查,在腳本中修改CSS樣式。具體如下。
如果是在一個頁面上的話 給注冊按鈕綁定一個click事件,當點擊的時候 在右側應該是table吧 動態添加一行 然後把用戶名和密碼帶過去就好。。
如果你只是html靜態的話 可以考慮把頁面丟過來~ 這東西實現很簡單。。
9. 求用jquery+ajax對html靜態頁面(例如table)數據的增刪改查,以及分頁功能的實例或相關例子
話說分抄頁,先把所有你需要的內容查詢出來,然後按照當前頁數去隱藏其他頁數內容,第二種是後台製作個動態頁面,根據參數去查詢頁數,前台利用ajax去發送請求得頁數,獲得返回的結果。話說增刪改,這個就更簡單了