%@ page language="java" contentType="text/html; charset=iso-8859-1" %> <%@ page import="com.ddwave.jsp.*, com.ddwave.beans.*, com.ddwave.util.*" %> <% String locale = "en"; String meeting_sql = "select title, place, time, url, new_window from meeting_master where locale='"+locale+"' order by id desc"; DDApplicationContext appContext = new DDApplicationContext(application.getInitParameter("prop.file")); %>
|
<%
try{
DBAccess dba = new DBAccess(appContext);
dba.connect();
try{
dba.executeQuery(meeting_sql);
while(dba.next()){
String url = dba.getString("url");
%>
<%
}
}finally{
dba.disconnect();
}
}catch(Exception e){
e.printStackTrace();
}
%>
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Copyright © 2001 Linux Internationalization Initiative (Li18nux). All rights reserved. |