Ajax是不直接访问数据库的。
Ajax即“Asynchronous JavaScript and XML”(异步JavaScript和XML)
Ajax是通过浏览器的xml>
AJAX介绍
1AJAX概述
11产生背景
在旧的交互方式中,由用户触发一个>
我是搞java的 所以这里用jsp
数据层(sqlserver)
在dao中
public boolean checklogin(String username,String password){
/具体的数据库驱动和url自己应该能搞定把/
boolean chelogin=false;
//用户名不存在则返回false 存在返回true 代码省略
return chelogin;
}
在 UserServlet中 的doget()中
PrintWriter out=responsegetWriter();
//调用dao中的checklogin()
String username=requestgetparameter("username");
String password=requestgetparameter("password");
boolean checklogin=new checklogin(username,password);
if(checklogin==true){
outprint("用户名验证正确,登陆成功");//这个是为了返回给ajax的XML>
function showLogs()
{
$("#table2")empty(); //这是清空原来的数据
$ajax({
type:"post",
url:"<%=requestgetContextPath()%>/logs/queryLogsInfoaction",
dataType:"json",
success:function(data)
{
for ( var i = 0; i < datalength; i++)
{
$("#table2")append("<tr style='line-height:25px;'>"
+"<td width='5%'>"+data[i]id+"</td>"
+"<td width='5%'>"+data[i]receive+"</td>"
+"<td width='8%'>"+data[i]data+"</td>"
+"<td width='10%'>"+data[i]dataLength+"</td>"
+"</tr>");
}
}
})
}
var t = setInterval("showLogs()", 1000); //隔1秒就查询一次数据
以上就是关于Ajax是如何访问Oracle数据库的全部的内容,包括:Ajax是如何访问Oracle数据库的、jsp页面中利用AJAX查询数据库、AJAX是什么等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)