SQLite
 sql >> Teknologi Basis Data >  >> RDS >> SQLite

impor database sqlite yang sudah dibuat (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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQLite - Ekspor Data ke File CSV

  2. Bagaimana cara memeriksa basis data pada perangkat android yang tidak di-root?

  3. Kembalikan data yang dicari dari sqlite

  4. memuat pemintal data dari sqlite dan mysql

  5. Android Room Embedded Relation mengabaikan SQL di mana kondisinya