Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit d42338e

Browse files
committed
Merge pull request #33 from jfragosoperez/patch-1
Remove additional "s" in some queries
2 parents 35cd422 + 7971ef2 commit d42338e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

demo-extended/src/com/novoda/sqliteprovider/demo/persistance/DatabaseConstants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public static class Shops {
2424
}
2525

2626
public static class RawSql {
27-
public static final String SELECT_ALL = "SELECT * FROM fireworks;";
27+
public static final String SELECT_ALL = "SELECT * FROM firework;";
2828

29-
public static final String INSERT_FIREWORK = "INSERT INTO fireworks " + "(name, color, noise, ftype, price, shop_id) " + "VALUES "
29+
public static final String INSERT_FIREWORK = "INSERT INTO firework " + "(name, color, noise, ftype, price, shop_id) " + "VALUES "
3030
+ "(Na, Co, No, Ft, Pr, Sh);";
3131

3232
public static final String SELECT_USING_PRIMARY_KEY = "SELECT * FROM firework WHERE (_id=1);";

0 commit comments

Comments
 (0)