createDB() public method

public createDB ( ) : void
return void
Beispiel #1
0
        // Code to execute when the application is launching (eg, from Start)
        // This code will not execute when the application is reactivated
        private void Application_Launching(object sender, LaunchingEventArgs e)
        {
            //          IsolatedStorageExplorer.Explorer.Start("192.168.0.6");
            using (var db = new PodcastSqlModel())
            {
                db.createDB();
            }

            // Updates episodes from the audio agent.
            refreshEpisodesFromAudioAgent();

            // Diagnostics
            ApplicationUsageHelper.Init(App.AppVersion);
        }
Beispiel #2
0
        // Code to execute when the application is launching (eg, from Start)
        // This code will not execute when the application is reactivated
        private void Application_Launching(object sender, LaunchingEventArgs e)
        {
            //          IsolatedStorageExplorer.Explorer.Start("192.168.0.6");
            using (var db = new PodcastSqlModel())
            {
                db.createDB();
            }

            CheckLicense();

            // Updates episodes from the audio agent.
            refreshEpisodesFromAudioAgent();

            handleRemovingIconFiles();
        }
Beispiel #3
0
        // Code to execute when the application is launching (eg, from Start)
        // This code will not execute when the application is reactivated
        private void Application_Launching(object sender, LaunchingEventArgs e)
        {
            //          IsolatedStorageExplorer.Explorer.Start("192.168.0.6");
            using (var db = new PodcastSqlModel())
            {
                db.createDB();
            }

            // Updates episodes from the audio agent.
            refreshEpisodesFromAudioAgent();

            // Diagnostics
            ApplicationUsageHelper.Init(App.AppVersion);
        }