AJAX Database Example

❮ 前章へ 次章へ ❯

AJAX can be used for interactive communication with a database.


AJAX Database 例

The following example will demonstrate how a web page can fetch information from a database with AJAX:


Customer info will be listed here...

Try it Yourself »


例の説明 - The showCustomer() Function

When a user selects a customer in the dropdown list above, a function called "showCustomer()" is executed. The function is triggered by the "onchange" event:

showCustomer

function showCustomer(str) {
  var xhttp;
  if (str == "") {
    document.getElementById("txtHint").innerHTML = "";
    return;
  }
  xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
    document.getElementById("txtHint").innerHTML = this.responseText;
    }
  };
  xhttp.open("GET", "getcustomer.html?q="+str, true);
  xhttp.send();
}

The showCustomer() function does the following:


The AJAX Server Page

The page on the server called by the JavaScript above is an ASP file called "getcustomer.html".

The server file could easily be rewritten in PHP, or some other server languages.

Look at a corresponding example in PHP.

The source code in "getcustomer.html" runs a query against a database, and returns the result in an HTML table:

<%
response.expires=-1
sql="SELECT * FROM CUSTOMERS WHERE CUSTOMERID="
sql=sql & "'" & request.querystring("q") & "'"

set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open(Server.Mappath("/datafolder/northwind.mdb"))
set rs=Server.CreateObject("ADODB.recordset")
rs.Open sql,conn

response.write("<table>")
do until rs.EOF
  for each x in rs.Fields
    response.write("<tr><td><b>" & x.name & "</b></td>")
    response.write("<td>" & x.value & "</td></tr>")
  next
  rs.MoveNext
loop
response.write("</table>")
%>

❮ 前章へ 次章へ ❯