android - Storing dates-time scales in a SQLite database table but in only one row -
android - Storing dates-time scales in a SQLite database table but in only one row -
i'm trying 1 patient programme veterinary use. i'm creating sqlite database table includes patient name, owner name, address etc. table should include when patient should made check-up, when should vaccinated, when take surgery.(we can time scale)... name, address etc unique data's; there 1 name, 1 address. "time scale" not unique. store not 1 data. can now? should made new database table every patient store these time scales? or should store more 1 info within 1 database row using string arrays or else? think best selection storing new database within database table row possible? help great. thanks.
why not this:
user_schedule ------------- create table user_schedule ( user_id integer, event_type text, event_date text // because it's sqlite )
this way every user can have n number of events , can give each event name query like, "give me users have vaccination coming soon."
android database store
Comments
Post a Comment