Langsung ke konten utama

Postingan

Menampilkan postingan dengan label excel

SQLiteToExcel v1.0.1

This is a Light weight Library to Convert SQLite Database to Excel and Convert Excel to SQLite. I have already released version 1.0.0 . It is suitable to export SQLite Database to Excel. But, In version 1.0.1 I have Included following features Features Added Functionality to Import Excel into SQLite Database. Added Functionality to Export Blob into Image. Added Functionality to Export List of tables specified. Sample App The sample app in the repository is available on Google Play: How to Download Add the following library in your app level gradle file compile 'com.ajts.androidmads.SQLite2Excel:library:1.0.1' How to Use Add Permission to Read External Storage in AndriodManifest.xml <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> Export SQLite to Excel This line is used to save the exported file in default location. SqliteToExcel sqliteToExcel = new SqliteToExcel(this, "helloworld.db"); This line is used to save the exporte...

SQLiteToExcel - v1.0.0

SQLiteToExcel is a Light weight Library to Convert SQLite Database to Excel. I have Released Newer Version for this Library. If your Requirement is only to export your SQLite Database, then this library is very much suitable. Otherwise you requirement is to import or export excel to db or vice-versa, then you go for my newer release. Please visit here to see about SQLite2XL Version 1.0.1 How to Download add the following library in your app level gradle file compile 'com.ajts.androidmads.SQLite2Excel:library:1.0.0' How to Use 1.AndroidManifest.xml Add the following line in your Manifest file <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 2.Library Initialization  This line is used to save the exported file in default location. SqliteToExcel sqliteToExcel = new SqliteToExcel(this, "helloworld.db"); This line is used to save the exported file in used preferred location. SqliteToExcel sqliteToExcel = new SqliteToExcel(this, ...