diff --git a/README.md b/README.md index 0077fc9..7082bdc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # EasiestSqlLibrary -The Easiest and Laziest approach to Android SQL Database. +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](https://github.com/p32929/EasiestSqlFlutter) or [pub.dev](https://pub.dev/packages/easiestdb) ## Installation Add it in your root build.gradle at the end of repositories: @@ -95,7 +95,7 @@ if (cursor != null) { ###### easiestDB.getOneRowData(String tableName, int rowNumber) ``` -Cursor cursor = easiestDB.getOneRowData(0, 0); +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); @@ -199,4 +199,4 @@ 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. -``` \ No newline at end of file +```