vendredi 11 mars 2016

java.sql.Date is deprecated what should I use? [duplicate]

This question already has an answer here:

I am trying to use to insert a date to my sqlite database.

public CardHolder(String firstName, String lastName, String barcodeNb,
                         Date dateOfBirth,Date expiryDate)

Where I initiated this instance in the mainActivity

 CardHolder person1 =new CardHolder("John","example","123123",new
                    java.sql.Date(1993,9,3),new java.sql.Date(1993,9,3));

But it shows that java.sql.Date is deprecated, what should I use instead?

Aucun commentaire:

Enregistrer un commentaire