<%@page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*"%> <%@ include file="Connections/library.jsp" %> <%--Copyright (C) 2002 Tony Grant This file is part of lmstoolkit lmstoolkit is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. lmstoolkit is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with lmstoolkit; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA--%> <% Driver Driverloan = (Driver)Class.forName(MM_library_DRIVER).newInstance(); Connection Connloan = DriverManager.getConnection(MM_library_STRING,MM_library_USERNAME,MM_library_PASSWORD); PreparedStatement Statementloan = Connloan.prepareStatement("SELECT loan_id, books.book_id, dateretour, noinventaire, books.titre, sorti, to_char(dateretour, 'DD-MM-YYYY'), dateentree, name, first_name FROM loan, books, borrower WHERE loan.borrower_id = borrower.borrower_id AND books.book_id = loan.book_id AND sorti = 't' ORDER BY datesortie"); ResultSet loan = Statementloan.executeQuery(); boolean loan_isEmpty = !loan.next(); boolean loan_hasData = !loan_isEmpty; Object loan_data; int loan_numRows = 0; %> <% int Repeat1__numRows = -1; int Repeat1__index = 0; loan_numRows += Repeat1__numRows; %> <% String MM_paramName = ""; %> <% // *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters String MM_keepBoth,MM_keepURL="",MM_keepForm="",MM_keepNone=""; String[] MM_removeList = { "index", MM_paramName }; // create the MM_keepURL string if (request.getQueryString() != null) { MM_keepURL = '&' + request.getQueryString(); for (int i=0; i < MM_removeList.length && MM_removeList[i].length() != 0; i++) { int start = MM_keepURL.indexOf(MM_removeList[i]) - 1; if (start >= 0 && MM_keepURL.charAt(start) == '&' && MM_keepURL.charAt(start + MM_removeList[i].length() + 1) == '=') { int stop = MM_keepURL.indexOf('&', start + 1); if (stop == -1) stop = MM_keepURL.length(); MM_keepURL = MM_keepURL.substring(0,start) + MM_keepURL.substring(stop); } } } // add the Form variables to the MM_keepForm string if (request.getParameterNames().hasMoreElements()) { java.util.Enumeration items = request.getParameterNames(); while (items.hasMoreElements()) { String nextItem = (String)items.nextElement(); boolean found = false; for (int i=0; !found && i < MM_removeList.length; i++) { if (MM_removeList[i].equals(nextItem)) found = true; } if (!found && MM_keepURL.indexOf('&' + nextItem + '=') == -1) { MM_keepForm = MM_keepForm + '&' + nextItem + '=' + java.net.URLEncoder.encode(request.getParameter(nextItem)); } } } // create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL + MM_keepForm; if (MM_keepBoth.length() > 0) MM_keepBoth = MM_keepBoth.substring(1); if (MM_keepURL.length() > 0) MM_keepURL = MM_keepURL.substring(1); if (MM_keepForm.length() > 0) MM_keepForm = MM_keepForm.substring(1); %> Retour
lmstoolkit

Books on loan
<% while ((loan_hasData)&&(Repeat1__numRows-- != 0)) { %> <% if (!loan_isEmpty ) { %> <% } /* end !loan_isEmpty */ %> <% Repeat1__index++; loan_hasData = loan.next(); } %>
"><%=(((loan_data = loan.getObject("first_name"))==null || loan.wasNull())?"":loan_data)%> <%=(((loan_data = loan.getObject("name"))==null || loan.wasNull())?"":loan_data)%> <%=(((loan_data = loan.getObject("noinventaire"))==null || loan.wasNull())?"":loan_data)%> <%=(((loan_data = loan.getObject("titre"))==null || loan.wasNull())?"":loan_data)%> <%=(((loan_data = loan.getObject("to_char"))==null || loan.wasNull())?"":loan_data)%> ','','scrollbars=yes,width=400,height=300')"> " size="32"> ">

© Tony Grant/tgds.net 2002
<% loan.close(); Connloan.close(); %>