private async void loadData() { //SQLiteAsyncConnection conn1 = new SQLiteAsyncConnection(System.IO.Path.Combine(ApplicationData.Current.LocalFolder.Path, "Appointment.db"), true); SQLiteAsyncConnection conn = new SQLiteAsyncConnection(System.IO.Path.Combine(ApplicationData.Current.LocalFolder.Path, "Appointment.db"), true); conn.DropTableAsync<SampleAppointment>(); await conn.CreateTableAsync<SampleAppointment>(); DateTime temp = DateTime.Now; DateTime start = DateTime.Parse("06/08/2013 6:00 PM"); DateTime end = DateTime.Parse("06/09/2013 6:00 PM"); SampleAppointment appointment1 = new SampleAppointment { Subject = "MACF - App Camp", AdditionalInfo = "BRTN 291, RSVP Reguired", StartDate = start, EndDate = end }; conn.InsertAsync(appointment1); SampleAppointment appointment2 = new SampleAppointment { StartDate = DateTime.Now.AddMinutes(30), EndDate = DateTime.Now.AddHours(1), Subject = "Appointment 376", AdditionalInfo = "Info 3" }; conn.InsertAsync(appointment2); start = DateTime.Parse("06/05/2013 5:00 PM"); end = DateTime.Parse("06/05/2013 6:00 PM"); SampleAppointment appointment3 = new SampleAppointment { StartDate = DateTime.Now.AddHours(2), EndDate = DateTime.Now.AddHours(3), Subject = "Appointment uhy4", AdditionalInfo = "Info 4" }; conn.InsertAsync(appointment3); SampleAppointment appointment4 = new SampleAppointment { Subject = "Malaysian Night", AdditionalInfo = "STEW Common, Members Only", StartDate = start, EndDate = end }; conn.InsertAsync(appointment4); //this.OnDataLoaded(); }
private async void loadData() { //SQLiteAsyncConnection conn1 = new SQLiteAsyncConnection(System.IO.Path.Combine(ApplicationData.Current.LocalFolder.Path, "Appointment.db"), true); SQLiteAsyncConnection conn = new SQLiteAsyncConnection(System.IO.Path.Combine(ApplicationData.Current.LocalFolder.Path, "Appointment.db"), true); await conn.CreateTableAsync <SampleAppointment>(); DateTime temp = DateTime.Now; DateTime start = DateTime.Parse("06/08/2013 6:00 PM"); DateTime end = DateTime.Parse("06/09/2013 6:00 PM"); SampleAppointment appointment1 = new SampleAppointment { Subject = "MACF - App Camp", AdditionalInfo = "BRTN 291, RSVP Reguired", StartDate = start, EndDate = end }; conn.InsertAsync(appointment1); SampleAppointment appointment2 = new SampleAppointment { StartDate = DateTime.Now.AddMinutes(30), EndDate = DateTime.Now.AddHours(1), Subject = "Appointment 376", AdditionalInfo = "Info 3" }; conn.InsertAsync(appointment2); start = DateTime.Parse("06/05/2013 5:00 PM"); end = DateTime.Parse("06/05/2013 6:00 PM"); SampleAppointment appointment3 = new SampleAppointment { StartDate = DateTime.Now.AddHours(2), EndDate = DateTime.Now.AddHours(3), Subject = "Appointment uhy4", AdditionalInfo = "Info 4" }; conn.InsertAsync(appointment3); SampleAppointment appointment4 = new SampleAppointment { Subject = "Malaysian Night", AdditionalInfo = "STEW Common, Members Only", StartDate = start, EndDate = end }; conn.InsertAsync(appointment4); //this.OnDataLoaded(); }