September 2000
Intermediate to advanced
608 pages
12h 59m
English
Now that we've see how the code works and how to build shopping-cart functionality with WAP, you can reference the complete code listings in the following section. The code listings can also be found on the CD-ROM that accompanies this book.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN" "http://www.wapforum.org/DTD/wml12.dtd"> <% response.setContentType("text/vnd.wap.wml"); %> <%@ page import="java.sql.*, javax.servlet.http.Cookie" %> <% Connection dbConn = null; int CartID=-1; ResultSet get_cart = null; try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); dbConn = DriverManager.getConnection( "jdbc:odbc:shop" ... |
Read now
Unlock full access