X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=src%2Fro%2Fieval%2Funical%2FMySQLiteHelper.java;h=dc3595157db2a37f9040b810d286a2f90b290b54;hb=819197b2305a94ab4924c5ae37a3fad762078448;hp=889ebdaeb7b4faf62518c9219a0913d466818063;hpb=bdd8f09cf842a79c5b667632d2866f38e366a86c;p=unical.git diff --git a/src/ro/ieval/unical/MySQLiteHelper.java b/src/ro/ieval/unical/MySQLiteHelper.java index 889ebda..dc35951 100644 --- a/src/ro/ieval/unical/MySQLiteHelper.java +++ b/src/ro/ieval/unical/MySQLiteHelper.java @@ -12,10 +12,10 @@ public class MySQLiteHelper extends SQLiteOpenHelper { public static final String Name="Events"; public static final String ID = "_id"; - public static final String name = "Name"; + public static final String title = "Title"; public static final String description = "Description"; public static final String date = "Date"; - public static final String time = "Time"; + public static final String duration = "Duration"; public static final String repeat = "repeat"; public static final String repeatIn = "repeatInterval"; public static final String location = "Location"; @@ -24,10 +24,10 @@ public class MySQLiteHelper extends SQLiteOpenHelper { private static final String Database_create = "create table " + Name + "(" + ID + " integer primary key autoincrement, " + - name + " text not null, " + + title + " text not null, " + description + " text, " + date + " integer, " + - time + " integer, " + + duration + " integer, " + repeat + " integer, "+ repeatIn + " integer, " + location + " text);"