Skip to content

Instantly share code, notes, and snippets.

@xcesco
Last active October 8, 2018 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xcesco/ec0205ce91e4743fb65592fd96c09246 to your computer and use it in GitHub Desktop.
Save xcesco/ec0205ce91e4743fb65592fd96c09246 to your computer and use it in GitHub Desktop.
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'Special edition Three-headed Monkey is finally here' (java.lang.String)
==> :name = 'Special edition Three-headed Monkey' (java.lang.String)
==> :price = '109' (java.lang.Integer)
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'Special edition Rubber Chicken is recommended by Stan S. Stanman' (java.lang.String)
I/ProductDaoImpl, insert (line 103): ==> :name = 'Special edition Rubber Chicken' (java.lang.String)
==> :price = '128' (java.lang.Integer)
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'Special edition Pint of Grog is the best sold product on Mêlé...' (java.lang.String)
==> :name = 'Special edition Pint of Grog' (java.lang.String)
==> :price = '15' (java.lang.Integer)
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'Special edition Monocle is 💯' (java.lang.String)
==> :name = 'Special edition Monocle' (java.lang.String)
I/ProductDaoImpl, insert (line 103): ==> :price = '190' (java.lang.Integer)
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'New Three-headed Monkey is finally here' (java.lang.String)
I/ProductDaoImpl, insert (line 103): ==> :name = 'New Three-headed Monkey' (java.lang.String)
==> :price = '42' (java.lang.Integer)
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'New Rubber Chicken is recommended by Stan S. Stanman' (java.lang.String)
==> :name = 'New Rubber Chicken' (java.lang.String)
==> :price = '73' (java.lang.Integer)
I/ProductDaoImpl, insert (line 94): INSERT OR REPLACE INTO products (description, name, price) VALUES (:description, :name, :price)
I/ProductDaoImpl, insert (line 103): ==> :description = 'New Pint of Grog is the best sold product on Mêlée Island' (java.lang.String)
==> :name = 'New Pint of Grog' (java.lang.String)
==> :price = '209' (java.lang.Integer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment