schematic icon indicating copy to clipboard operation
schematic copied to clipboard

Automatically generate ContentProviders

Results 22 schematic issues
Sort by recently updated
recently updated
newest added

Hello! After building project and generate Content Provider I have error Package net.simonvt.schematic.utils does not exist ![image](https://user-images.githubusercontent.com/29271613/35338995-06717640-0128-11e8-9b9b-d62f0f02ffda.png)

In my android manifest file I have declared the name of provider right but still its giving me the error that unable to get provider- Process: android.example.com.squawker, PID: 17946 java.lang.RuntimeException:...

As we validate the content values in typical content provider before performing insertion or update like this example shown below, ```java private Uri insertMember(Uri uri, ContentValues values) { if (values.size()...

Hi, I believe this has been asked in a couple different ways, but I don't see any answer. I'll try to summarize. Is it possible to use a value such...

how can i write a query like SELECT * FROM table_one WHERE name LIKE '%jac%' using @InexactContentUri, and i just cant get the where clause to work

Added support to Foreign Key constraints actions on clauses "ON UPDATE" and "ON DELETE", following this specification: https://www.sqlite.org/foreignkeys.html#fk_actions

Hey I'm having trouble understanding how join works in schematic/content providers. I have two tables and I want to query them joining them by their ids. Inserting wasn't a problem...

I added one table and everything was working great. Added two more tables and build start failing with NullPointerException without any message. I ran the build with `--stacktrace` and it...

Hi, I added support for "ON DELETE CASCADE" clause for the foreign key constraint.