Android-AnnotatedSQL icon indicating copy to clipboard operation
Android-AnnotatedSQL copied to clipboard

Android library for auto generating SQL schema and Content provider

Results 9 Android-AnnotatedSQL issues
Sort by recently updated
recently updated
newest added

I have encountered a nasty deadlock during debugging some db-related code and traced it down to [this thread](http://sqlite.1065341.n5.nabble.com/Deadlock-with-multiple-connections-td69525.html). So, basically, SQLite is advertised as a multiple-readers-single-writer db, but does not...

Steps to reprodice: 1. Define rawquery as SELECT AI._id, GROUP_CONCAT(Name, ", ") AS GroupedName FROM ABSTRACTS_ITEM AI JOIN AUTHORS_ABSTRACT AAB ON AI.ID = AAB.ABSTRACTSITEM_ID JOIN ABSTRACT_AUTHOR AAU ON AAU._id =...

Hi, Could you please add support of foreign keys feature?

Let's look at schema with [simple join on views](https://gist.github.com/Alexander--/80d263643d936f88ae4f). The linked gist won't compile, because using a Schema2 requires a table to be parsed... Which can not be done until...

Right now AnnotatedSQL mangles column names during joins by appending "as _table_name___column_name_" to each column in generated SELECT statement, e.g. ``` CREATE VIEW nearest as SELECT locations._id as _id, locations.coslat...

Generated code fails to compile because of variable name mismatch.

Hi, Could you please add an option for bulk insert operation - to throw an exception on failure and rollback a transaction?