The Wayback Machine - https://web.archive.org/web/20200612085102/https://github.com/topics/sqlite-database
Skip to content
#

sqlite-database

Here are 657 public repositories matching this topic...

gbinal
gbinal commented Mar 18, 2016

Thanks for making such great code. I've got an instance running and am trying to document the ways that I can query the API.

So far, I've found:

  • ?page=2
  • ?[columnheader]=[value]
  • ?[columnheader1]=[value1]&[columnheader3]=[value4] (returns results that have both value1 and value2)
  • ?[columnheader1]=[value1]&[columnheader1]=[value2] (returns results that have value1 OR value2)

I'

SqfEntity ORM for Flutter/Dart lets you build and execute SQL commands on SQLite database easily and quickly with the help of fluent methods similar to .Net Entity Framework. SqfEntity also generates add/edit forms with validations and special controls (DropDown List, DateTime pickers, Checkboxes.. etc) for your table.

  • Updated Jun 10, 2020
  • Dart
rock3r
rock3r commented Dec 14, 2015

When you look at the code generated by this tool, you notice that the getters and setters look like this:

    public static int getId(android.database.Cursor cursor) {
        int index = cursor.getColumnIndexOrThrow("_id");
        return cursor.getInt(index);
    }

    public static void setId(int value, android.content.ContentValues values) {
        values.put("_id", value);
    }
`

Improve this page

Add a description, image, and links to the sqlite-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the sqlite-database topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.