i have a sqlite database on my android, whith a datetime column, that contains a date with the Format dd.MM.yyyy. It\'s not my Database, I\'m niot able to change the Datefor
Do you want do this in the database (SQL) or in program code? In Java you may use SimpleDateFormat
SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy"); Date d = sdf.parse("21.03.1997");