我使用下面的代码把数据保存到 SQlite 数据库中( java.sql.Date)
public String dateToDB ( Date date) { String convertedDate = date.toString(); // yyyy-mm-dd return convertedDate; }
如何从SQlite中检索字符串,把已复原的字符串转换成sql date 类型?
private Date dateFromColumn(String columName, Cursor result) { // ??????? return date }
相关分类