sql >> データベース >  >> RDS >> SQLite

作成済みのsqliteデータベース(xamarin)をインポートします

    string localPath = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), YourAppName);
    
    //Directory with your DB3 file
    var dirx = Android.OS.Environment.ExternalStorageDirectory.ToString();
    
    // DB File 
    var dbfile = System.IO.Path.Combine(dirx , "/YourAppName/YourSQLiteDB.db3");
    
    
    
                if (File.Exists(dbfile))
                {
    
                    File.Copy(dbfile, localPath, true);
                    Toast.MakeText(this, "SQLiteDB copied successfully!", ToastLength.Long).Show();
    
    
                }
                else
                {
                    Toast.MakeText(this, "copy from " + diry +         System.Environment.NewLine + "to " + localPath + " failed or source file is missing!", ToastLength.Long).Show();
                }
    }
    



    1. PowerShellを使用して.sqlファイルを実行する方法は?

    2. 動的SQLの結果をsql-serverの変数に取得する

    3. 大したこと:SQL Server 2016 Service Pack 1

    4. SQLServerへのXMLデータの保存