create table words (_id integer primary key autoincrement, wordtext text not 
null unique, timestamp integer not null);

public class Word
{
    long _id;
    String wordtext;
    long timestamp;
}

timestamp:
before save: 1247435151517
after save : 1247435160847

Why is it doing this?



      
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to