Here you can find the source of toSQLTimestamp(String time)
Parameter | Description |
---|---|
time | the time |
public static final java.sql.Timestamp toSQLTimestamp(String time)
//package com.java2s; //License from project: Apache License public class Main { /**/* w ww. j av a2 s. c o m*/ * To SQL timestamp. * * @param time the time * @return the java.sql. timestamp */ public static final java.sql.Timestamp toSQLTimestamp(String time) { return java.sql.Timestamp.valueOf(time); } }