Java SQL Date From toSqlDate(java.util.Date date)

Here you can find the source of toSqlDate(java.util.Date date)

Description

Convert a java.util.Date object to a java.sql.Date object.

License

Open Source License

Parameter

Parameter Description
date A java.util.Date object.

Return

A java.sql.Date object.

Declaration

public static java.sql.Date toSqlDate(java.util.Date date) 

Method Source Code

//package com.java2s;
/*/*from  w w  w .jav  a2s. co  m*/
 *   casmi
 *   http://casmi.github.com/
 *   Copyright (C) 2011, Xcoo, Inc.
 *
 *  casmi is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.Calendar;

public class Main {
    /**
     * Convert a java.util.Date object to a java.sql.Date object.
     *
     * @param date A java.util.Date object.
     * @return A java.sql.Date object.
     */
    public static java.sql.Date toSqlDate(java.util.Date date) {

        Calendar cal = Calendar.getInstance();
        cal.setTime(date);
        cal.set(Calendar.HOUR_OF_DAY, 0);
        cal.set(Calendar.MINUTE, 0);
        cal.set(Calendar.SECOND, 0);
        cal.set(Calendar.MILLISECOND, 0);
        return new java.sql.Date(cal.getTimeInMillis());
    }
}

Related

  1. toSqlDate(Date dt)
  2. toSqlDate(final Date date)
  3. toSqlDate(final String _text, final String _dateFormat)
  4. toSQLDate(java.util.Date date)
  5. toSQLDate(java.util.Date date)
  6. toSQLDate(Object object, Object oDefault)
  7. toSqlDate(String date)
  8. toSqlDate(String date)
  9. toSqlDate(String dateStr, String format)