简体   繁体   中英

How to insert date into SQLite?

I've got this error:

Cannot resolve method 'put(java.lang.String, java.util.Date)'

In the code below: 在此处输入图片说明

lsd and nsd are the column names with data type DATE.

public void onCreate(SQLiteDatabase db)
{
    String query="CREATE TABLE"+c_tablename+"(c_id int AUTO_INCREMENT primary key,name varchar(20),contact double ,address varchar(50)," +
            "bike_number varchar(16),bike_type varchar(10),lsd date,nsd date,lwd varchar(100),cost int,message varchar(100))";
    db.execSQL(query);

}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
    String query= "DROP TABLE IF EXIST "+c_tablename;
    String query2="DROP TABLE IF EXIST "+h_tablename;
    db.execSQL(query);
    db.execSQL(query2);

    onCreate(db);
}

public void  saveData(String name , int contact , String address , String bike_number , String bike_type , java.util.Date lsd  ,
                      java.util.Date nsd , String lwd , int cost , String message )
{
    ContentValues contentValues=new ContentValues();
    contentValues.put("name",name);
    contentValues.put("contact",contact);
    contentValues.put("address",address);
    contentValues.put("bike_number",bike_number);
    contentValues.put("bike_type",bike_type);
    contentValues.put("lsd",lsd);
    // The error is in the following line ("Cannot resolve method 'put(java.lang.String, java.util.Date)'"):
    contentValues.put("nsd",nsd);
    contentValues.put("lwd",lwd);
    contentValues.put("cost",cost);
    contentValues.put("message",message);
}

Hi can you try something like this,

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
ContentValues contentValues=new ContentValues();
contentValues.put("lsd", dateFormat.format(lsd));

Akshay shows the right solution to your problem.

The background information is that SQLite does not support a date type:

SQLite does not have a storage class set aside for storing dates and/or times. Instead, the built-in Date And Time Functions of SQLite are capable of storing dates and times as TEXT, REAL, or INTEGER values

See SQLite documentation at https://www.sqlite.org/datatype3.html#section_2_2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM