Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1. start connect...
  2. SQLite.JDBCDriver
  3. ***SQLite.JDBCDriver***
  4. SQLite.JDBCDriver
  5. 2016-10-21 14:02:03,202 [DEBUG] DaoManager created dao for class class ru.agima.mobile.bl.db.Entities.reminders.DoseEntity with reflection
  6. 2016-10-21 14:02:03,202 [DEBUG] DaoManager created dao for class class ru.agima.mobile.bl.db.Entities.reminders.DrugReminderEntity with reflection
  7. 2016-10-21 14:02:03,202 [INFO] TableUtils creating table 'remindDrugReminder'
  8. 2016-10-21 14:02:03,210 [DEBUG] JdbcConnectionSource opened connection to jdbc:sqlite:/private/var/mobile/Containers/Data/Application/FF0B05E5-C9C3-4251-842B-16150994CDF4/tmp/sample.db got #89650160
  9. 2016-10-21 14:02:03,222 [INFO] TableUtils executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `remindDrugReminder` (`isStopped` BOOLEAN , `duration` INTEGER , `startDate` BIGINT , `daysOfMedication` BLOB , `daysOfMedicationType` VARCHAR , `drugName` VARCHAR , `reminderId` INTEGER , PRIMARY KEY (`reminderId`) )
  10. connection opened
  11. start connect...
  12. SQLite.JDBCDriver
  13. ***SQLite.JDBCDriver***
  14. SQLite.JDBCDriver
  15. 2016-10-21 14:02:03,224 [DEBUG] DaoManager created dao for class class ru.agima.mobile.bl.db.Entities.reminders.DrugReminderEntity with reflection
  16. 2016-10-21 14:02:03,224 [DEBUG] DaoManager created dao for class class ru.agima.mobile.bl.db.Entities.reminders.DoseEntity with reflection
  17. 2016-10-21 14:02:03,224 [INFO] TableUtils creating table 'remindDose'
  18. 2016-10-21 14:02:03,226 [DEBUG] JdbcConnectionSource opened connection to jdbc:sqlite:/private/var/mobile/Containers/Data/Application/FF0B05E5-C9C3-4251-842B-16150994CDF4/tmp/sample.db got #89722672
  19. 2016-10-21 14:02:03,236 [INFO] TableUtils executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `remindDose` (`doseType` VARCHAR , `dose` INTEGER , `time` BIGINT , `drugReminderEntity_id` INTEGER NOT NULL , `doseId` INTEGER , PRIMARY KEY (`doseId`) )
  20. connection opened
  21. start connect...
  22. SQLite.JDBCDriver
  23. ***SQLite.JDBCDriver***
  24. SQLite.JDBCDriver
  25. 2016-10-21 14:02:03,237 [DEBUG] DaoManager created dao for class class ru.agima.mobile.bl.db.Entities.reminders.IntakeEntity with reflection
  26. 2016-10-21 14:02:03,238 [INFO] TableUtils creating table 'remindIntake'
  27. 2016-10-21 14:02:03,239 [DEBUG] JdbcConnectionSource opened connection to jdbc:sqlite:/private/var/mobile/Containers/Data/Application/FF0B05E5-C9C3-4251-842B-16150994CDF4/tmp/sample.db got #89770672
  28. 2016-10-21 14:02:03,249 [INFO] TableUtils executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `remindIntake` (`isDeleted` BOOLEAN , `isMissed` BOOLEAN , `doseType` VARCHAR , `dose` INTEGER , `date` BIGINT , `doseId` INTEGER , `intakeId` INTEGER , PRIMARY KEY (`intakeId`) )
  29. connection opened
  30. 2016-10-21 14:02:03,250 [DEBUG] StatementBuilder built statement SELECT * FROM `remindDrugReminder` ORDER BY `reminderId` DESC LIMIT 1
  31. 2016-10-21 14:02:03,250 [DEBUG] BaseMappedStatement prepared statement 'SELECT * FROM `remindDrugReminder` ORDER BY `reminderId` DESC LIMIT 1 ' with 0 args
  32. java.sql.SQLException: SQLite.Exception: error in step
  33. at SQLite.JDBC2z.JDBCStatement.executeQuery(JDBCStatement.java:141)
  34. at SQLite.JDBC2z.JDBCPreparedStatement.executeQuery(JDBCPreparedStatement.java:115)
  35. at com.j256.ormlite.jdbc.JdbcCompiledStatement.runQuery(JdbcCompiledStatement.java:57)
  36. at com.j256.ormlite.stmt.StatementExecutor.queryForFirst(StatementExecutor.java:104)
  37. at com.j256.ormlite.dao.BaseDaoImpl.queryForFirst(BaseDaoImpl.java:237)
  38. at ru.agima.mobile.bl.db.DAO.reminders.DrugReminderDAO.create(DrugReminderDAO.java:44)
  39. at ru.agima.mobile.bl.logic.reminders.CreateReminderWorker.doWork(CreateReminderWorker.java:21)
  40. at ru.agima.mobile.bl.logic.reminders.CreateReminderWorker.doWork(CreateReminderWorker.java:12)
  41. at ru.agima.mobile.bl.logic.BaseWorker.Execute(BaseWorker.java:37)
  42. 2016-10-21 14:02:03,252 [DEBUG] JdbcConnectionSource closed connection #89770672
  43. connection closed
  44. 2016-10-21 14:02:03,252 [DEBUG] JdbcConnectionSource closed connection #89722672
  45. connection closed
  46. 2016-10-21 14:02:03,253 [DEBUG] JdbcConnectionSource closed connection #89650160
  47. connection closed
  48. (lldb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement