puvi
dao
0 Answer(s)      a year and a month ago
Posted in : JSP-Servlet

package com.ilp.tsi.um.dao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

import com.ilp.tsi.um.constant.BankConstant;
public class BankDao {
    public static Connection createconnection() {
        Connection conn = null;
        try 
        {
            Class.forName(BankConstant.DRIVER).newInstance();
            conn = DriverManager.getConnection(BankConstant.DBURL,BankConstant.DBUSER, BankConstant.DBPASS);

        } 
        catch (ClassNotFoundException ce) 
        {
            ce.printStackTrace();
        } 
        catch (SQLException e) 
        {
            e.printStackTrace();
        } 
        catch (InstantiationException e)
        {
            e.printStackTrace();
        } 
        catch (IllegalAccessException e) 
        {
            e.printStackTrace();
        }
        return conn;
    }

}

//bean:

package com.ilp.tsi.um.bean;

public class BankBean {

private String userName;
private String password;

public String getUsername(){
    return userName;

}
public void setUsername(String username){
    userName=username;
}
public String getPassword(){
    return password;

}
public void setPassword(String password){
    this.password=password;
}
}

//service:

package com.ilp.tsi.um.service;


    import java.sql.Connection;

    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;

    import com.ilp.tsi.um.bean.BankBean;

    public class BankService {
         //To Perform login authentication of Administrator
        public boolean authenticate(BankBean loginBean, Connection connection)
                throws SQLException {

            try {
                String Username = loginBean.getUsername();
                String Password = loginBean.getPassword();

                Statement statement = connection.createStatement();
                // Executing required select query using Statement
                ResultSet rs = statement.executeQuery("select * from adminlogin  where username='"+Username+"' and  password='"+Password+"'");
                // Iterating resultset for the data from table
                if (rs.next()) {
                    return true;
                    // end if 
                } else {
                    return false;
                } // end else

            } catch (SQLException sqle) {
                sqle.printStackTrace();
                connection.close();

            } // end catch 
            catch (Exception e) {
                e.printStackTrace();
                connection.close();
            }// end catch 
            finally
            {
            connection.close();}
            return false;
        }// end finally


    }
View Answers









Related Pages:
dao
DAO Classes
DAO Classes  login page code for Dao classes
DAO Example
DAO Example  Dear Friends Could any one please give me any example of DAO application in struts? Thanks & Regards Rajesh
DAO - JDBC
DAO  what is dao ? and how to use it?  Hi Friend, The DAO is a pattern that provides a technique for separating object persistence and data access logic from any particular persistence mechanism or API. Thanks
DAO in Struts
DAO in Struts  Can Roseindia provide a simple tutorial for implementation of DAO with struts 1.2? I a link already exits plz do tell me. Thank you
doubt on DAO's
doubt on DAO's  hai frnds.... can anyoneexplain about how... our own plugin????? and please help me. how to use dao s while integrating struts with hibernate..??? actually what is the purpose of dao's ????? please help
doubt on DAO's
doubt on DAO's  hai frnds.... can anyoneexplain about how... our own plugin????? and please help me. how to use dao s while integrating struts with hibernate..??? actually what is the purpose of dao's ????? please help
dao pack
dao pack  package com.tsi.dao; import java.sql.*; import com.tsi.constants.*; public class DaoPack { public static Connection conn = null; public static Connection createConnection() { try
dao pack
dao pack  package com.tsi.dao; import java.sql.*; import com.tsi.constants.*; public class DaoPack { public static Connection conn = null; public static Connection createConnection() { try
CRUD DAO
CRUD DAO  how to create dao for create,read,update and delete?   /* *ConnectionManager * * *Version:1.0 * *Date:25-Nov-2011 * */ package com.student.dao; import java.sql.*; import org.apache.log4j.Logger
spring DAO module turorial
spring DAO module turorial  how to integrate springDAO and spring webMVC
implementing DAO - Struts
, exam in 3 days, and just now i found out our lecturer post a demo on DAO... divided into DAO factory Impl,employeeDAOImpl,DAOFactory,EmployeeDAO. "I strongly... writing DAO Implementation classes." This is her advice. But as a beginner who just
DAO DTO design pattern
DAO DTO design pattern  Hi,using dao and dto i want to perform insert,update and delete operation.and the data should navigate from 1 frame 2 another.that page should b smthng like this: <%@ page language="java" import
DAO DTO design pattern
DAO DTO design pattern  Hi,using dao and dto i want to perform insert,update and delete operation.and the data should navigate from 1 frame 2 another.that page should b smthng like this: <%@ page language="java" import
DAO DTO design pattern
DAO DTO design pattern  Hi,using dao and dto i want to perform insert,update and delete operation.and the data should navigate from 1 frame 2 another.that page should b smthng like this: <%@ page language="java" import
DAO DTO design pattern
DAO DTO design pattern  Hi,using dao and dto i want to perform insert,update and delete operation.and the data should navigate from 1 frame 2 another.that page should b smthng like this: <%@ page language="java" import
how to create dao
how to create dao   code1: package com.dao; import java.sql.*; import com.beans.*; public class DbAccess { public void createStudent(SampleBean sampleBean) throws SQLException { Connection con=null; try
DAO,DTO,VO Design patterns
DAO,DTO,VO Design patterns  explain dao,dto,vo design patterns in strut 1.3?   Data Access Object (DAO) pattern is the most popular design patterns. It is used when you want to separate your presentation code from
DAO Layer explained
DAO Layer explained       In this section we will explain you the DAO Layer of our application.   DAO Layer Explained   DAO stand for Data
how to login form through spring dao module
how to login form through spring dao module  here i want to chek user details in database through form by using spring dao module.please give me some reference example to me
Creating Data Access Object (DAO) Design Pattern
Creating Data Access Object (DAO) Design Pattern Data Access Object... code contains in  DAO and it provides a simple interface to access the data. In DAO you need to create the Connection factory class. This class contains
login dao file for referece (source code for reference)
login dao file for referece (source code for reference)  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <
How to display data in jsp from dao using java beans?
How to display data in jsp from dao using java beans?  Hi I need to display data in jsp pulling from dao using java beans, Please can anyone give me the sample application with above topics. Any help would be highly appreciated
How to connect to dao n bean classes with jsp
How to connect to dao n bean classes with jsp  I have made this edao pkg package edao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Statement; import
Understanding Spring Struts Hibernate DAO Layer
Understanding Spring Struts Hibernate DAO Layer... Hibernate DAO Layer   The Data Access Object for this application is written... access object. The Hibernate DAO consists applicationContext-hibernate.xml
How sql Queries possible in DAO without creating Database connections - Java Beginners
How sql Queries possible in DAO without creating Database connections  In DAO we are writting sql queries , how it is possible without creating and closing database connections
Data Access object (DAO) Design Pattern
. The DAO design pattern completely  hides the data access implementation... the DAO to adopt different access scheme without affecting to business logic or its.... The DAO design pattern consists of some factory classes, DAO interfaces
net.roseindia.dao
This section contains the DAO interface and its implementation class
net.roseindia.dao
This package is the part of Spring and Hibernate JPA integration application which contains DAO service interface and it's implementation class
User Registration Action Class and DAO code
User Registration Action Class and DAO code       In this section we will explain how to write code for action class and code for performing database operations
Spring JDBC Introduction
Spring JDBC Introduction The Spring's DAO(Data access object) make it easy... for accessing data from database. Using DAO you can switch any of the above... a brief introduction about Spring DAO JDBC. The following table  describe
java - Struts
java  How to implement the DAO classes and how to uses DTO's in DAO
struts
struts   how to write Dao to select data from the database
Java JDBC
Java JDBC  What are the difference between DAO (Data Access Object ) and DAC (Data Access Component
java - Framework
java  how use dao class in projects.give a simple application so that it is easy for a beginner thnx
jsp
jsp  Hi in my dao class some exception is there then how can i display in jsp page
Design Patterns
Design Patterns  Explain the Factory Pattern, VO Pattern, DAO Pattern, and Singleton Pattern
Stub or Mock in JUnit
a situation, where you have a class Calculator, that needs a dao (Data Access Object... provide the Calculator instance with a fake dao class which just returns the data you need for the test. The fake dao class will not actually read the data from
struts
struts  hi i would like to have a ready example of struts using"action class,DAO,and services" so please help me
Creating a service - JSP-Servlet
page.Then I created a DAO class which would access the database and return the results.The DAO Is written using Hibernate Then I should create a service which would take the username and password and calls the Data Access Object (DAO
Spring wit hibernate - Spring
with hibernate DAo framwork, i m geeting session closed exception. some thing... the object i m trying to achieve from the data base in the DAO implemention i m... can remove the System.out.println statement fromn my DAO implemenetation
Complete j2ee technical flow - Design concepts & design patterns
Complete j2ee technical flow  Hi Friends. I want complete technical flow of j2ee project with following technologies.jsp , servlet , Struts , Hibernate , (should follow mvc-2 design pattern) . with DAO ,DTO SERVICE
Java - Design concepts & design patterns
Java  Sir , please let me know the exact usage of DAO design pattern  Hi Friend, Please visit the following link: http://www.roseindia.net/javatutorials/J2EE_singleton_pattern.shtml Thanks
real time question
real time question  can you just give me the example of using hibernate in DAO classes   Hi Friend, Please visit the following link: Hibernate Tutorials Thanks
struts
struts  hi i would like to have a ready example of struts using "action class,DAO,and services" for understanding.so please guide for the same. thanks  Please visit the following link: Struts Tutorials
Hibernate code problem - Hibernate
Hibernate code problem  Hi, This is Birendra Pradhan.I want to create a DAO,who takes the connection from Hibernate.I want to use multiple query in the DAO.Can it be possibe. Please send some sample code.. thanks

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.