| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The Easiest and the Laziest approach to Android SQL Database. If you like Flutter, the flutter version of this library can be found here -> Github or pub.dev
Sharing with your friends is just one click away from here
If you like my works and want to support me/my works, feel free to support or donate. My payment details can be found here: https://p32929.github.io/SendMoney2Me/
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
implementation 'com.github.p32929:EasiestSqlLibrary:1.0.0.2'
}
Steps to follow:
After that, you can do all kinds of CRUD ( Create, Read, Update, Delete ) operations.
EasiestDB easiestDB = EasiestDB.init(this)
.addTableColumns("table 1",
new Column("Column a1", "text"),
new Column("Column a2", "text")
)
.addTableColumns("table 2",
new Column("Column b1", "text"),
new Column("Column b2", "text", "unique")
)
.doneAddingTables();
boolean added = easiestDB.addDataInTable(0,
new Datum(1, "Value1"),
new Datum(2, "Value2")
);
Cursor cursor = easiestDB.getAllDataFrom(0);
if (cursor != null) {
while (cursor.moveToNext()) {
int value1 = cursor.getInt(columnIndex);
String value2 = cursor.getString(columnIndex);
double value3 = cursor.getDouble(columnIndex);
}
}
or
Cursor cursor = easiestDB.getAllDataOrderedBy(0, true, 0);
if (cursor != null) {
while (cursor.moveToNext()) {
int value1 = cursor.getInt(columnIndex);
String value2 = cursor.getString(columnIndex);
double value3 = cursor.getDouble(columnIndex);
}
}
Cursor cursor = easiestDB.getOneRowData(0, 1); // rowNumber starts from 1 but tableIndex starts from 0
if (cursor != null) {
cursor.moveToFirst();
int value1 = cursor.getInt(columnIndex);
String value2 = cursor.getString(columnIndex);
double value3 = cursor.getDouble(columnIndex);
}
Cursor cursor = easiestDB.searchInOneColumn(1, "Value1", 0, 0);
if (cursor != null) {
cursor.moveToFirst();
int value1 = cursor.getInt(columnIndex);
String value2 = cursor.getString(columnIndex);
double value3 = cursor.getDouble(columnIndex);
}
Cursor cursor = easiestDB.searchValuesInMultipleColumns(1,
new Datum(1, "Value1"),
new Datum(2, "Value2")
);
boolean matched = cursor.getCount() > 0;
boolean updated = easiestDB.updateData(0, 1,
new Datum(1, "Value1.1"),
new Datum(2, "Value2.2")
);
boolean deleted = easiestDB.deleteRow(0, 1);
boolean deleted = easiestDB.deleteRowIfValuesMatchIn(0,
new Datum(1, "Value1")
);
easiestDB.deleteAllDataFrom(0)
boolean deleted = easiestDB.deleteDatabase();
I hope, you will enjoy using the library. Feel free to contribute codes.
If you want to use the previous version of this library, you can still use that from here: https://github.com/p32929/AndroidEasySQL-Library
MIT License Copyright (c) 2020 Fayaz Bin Salam Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Back | FazBrowse Home | New Git URL |