Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
LibraryDAO.java~6~
Package: LibraryManage.rar [view]
Upload User: toby828
Upload Date: 2015-06-26
Package Size: 8558k
Code Size: 1k
Category:
Jsp/Servlet
Development Platform:
Java
- package com.dao;
- import com.core.ConnDB;
- import java.sql.*;
- import com.actionForm.LibraryForm;
- /**
- * <p>Title: LibraryManage</p>
- *
- * <p>Description: </p>
- *
- * <p>Copyright: Copyright (c) 2006</p>
- *
- * <p>Company: </p>
- *
- * @author not attributable
- * @version 1.0
- */
- public class LibraryDAO {
- ConnDB conn=null;
- public LibraryDAO() {
- conn=new ConnDB();
- }
- public LibraryForm query(){
- LibraryForm libraryForm1=null;
- String sql = "select * from tb_library where id=1";
- ResultSet rs =conn.executeQuery(sql);
- try {
- while (rs.next()) {
- libraryForm1 = new LibraryForm();
- libraryForm1.setId(Integer.valueOf(rs.getString(1)));
- libraryForm1.setLibraryname(rs.getString(2));
- libraryForm1.setCurator(rs.getString(3));
- libraryForm1.setTel(rs.getString(4));
- libraryForm1.setAddress(rs.getString(5));
- libraryForm1.setEmail(rs.getString(6));
- libraryForm1.setUrl(rs.getString(7));
- libraryForm1.setTime(rs.getString(8));
- libraryForm1.setIntroduce(rs.getString(9));
- }
- } catch (Exception ex) {
- }
- conn.close();
- return libraryForm1;
- }
- }