Skip to content

Commit d36b038

Browse files
committed
Fixed sample app link.
1 parent e0a155a commit d36b038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ In this example, the field `main_team_id` is a foreign key referencing the prima
201201
- Foreign keys always reference the `_id` column (the implicit primary key of all tables) and thus must always be of type `Long` - by design.
202202
- **Only one foreign key to a particular table is allowed per table.** In the example above only one column in `person` can point to `team`.
203203
- **Loops** (i.e. A has a foreign key to B and B has a foreign key to A) **aren't detected.** The generator will infinitely loop if they exist.
204-
- Cases such as "A has a FK to B, B has a FK to C, A has a FK to C" generate ambiguities in the queries, because C columns appear twice. In the [sample app](etc/sample/app/src/org/jraf/androidcontentprovidergenerator/sample/provider) you can see an example of how to deal with this case, using prefixes and aliases (SQL's `AS` keyword).
204+
- Cases such as "A has a FK to B, B has a FK to C, A has a FK to C" generate ambiguities in the queries, because C columns appear twice. In the [sample app](etc/sample/app/src/org/jraf/androidcontentprovidergenerator/sample/app/SampleActivity.java) you can see an example of how to deal with this case, using prefixes and aliases (SQL's `AS` keyword).
205205

206206

207207
Building

0 commit comments

Comments
 (0)