Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.61 KB | None | 0 0
  1. SELECT * FROM (ttime JOIN time_flight USING (_id_time)) JOIN flight USING (_id_flight)
  2. INNER JOIN busеs AS b ON b._id = flight.bus
  3. INNER JOIN price AS p ON p._id = flight.price
  4. WHERE _id_flight = 1
  5.  
  6. 05-28 13:31:53.715 2283-2283/com.veshnevsky.bussmela E/Trace: error opening trace file: Permission denied (13)
  7. 05-28 13:31:53.795 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.support.v4.view.ViewCompat$OnUnhandledKeyEventListenerWrapper', referenced from method android.support.v4.view.ViewCompat.addOnUnhandledKeyEventListener
  8. 05-28 13:31:53.795 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.view.ViewCompat.dispatchApplyWindowInsets
  9. 05-28 13:31:53.805 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.view.ViewCompat.onApplyWindowInsets
  10. 05-28 13:31:53.805 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.view.View$OnUnhandledKeyEventListener', referenced from method android.support.v4.view.ViewCompat.removeOnUnhandledKeyEventListener
  11. 05-28 13:31:53.805 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.support.v4.view.ViewCompat$1', referenced from method android.support.v4.view.ViewCompat.setOnApplyWindowInsetsListener
  12. 05-28 13:31:53.815 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.support.v4.widget.DrawerLayout$1', referenced from method android.support.v4.widget.DrawerLayout.<init>
  13. 05-28 13:31:53.815 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.widget.DrawerLayout.onDraw
  14. 05-28 13:31:53.815 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.widget.DrawerLayout.onMeasure
  15. 05-28 13:31:53.815 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.widget.DrawerLayout.onMeasure
  16. 05-28 13:31:53.885 2283-2283/com.veshnevsky.bussmela E/dalvikvm: Could not find class 'android.graphics.drawable.RippleDrawable', referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappingRendering
  17. 05-28 13:31:55.735 2283-2283/com.veshnevsky.bussmela E/SQLiteLog: (1) no such table: ttime
  18. 05-28 13:31:55.735 2283-2283/com.veshnevsky.bussmela E/AndroidRuntime: FATAL EXCEPTION: main
  19. android.database.sqlite.SQLiteException: no such table: ttime (code 1): , while compiling: SELECT * FROM ttime JOIN time_flight USING (_id_time) JOIN flight USING (_id_flight) JOIN busеs as b on b._id = flight.bus JOIN price as p on p._id = flight.price WHERE _id_flight = 1
  20. at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
  21. at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:882)
  22. at android.database.sqlite.SQLiteConnection.prepare(SQLiteConnection.java:493)
  23. at android.database.sqlite.SQLiteSession.prepare(SQLiteSession.java:588)
  24. at android.database.sqlite.SQLiteProgram.<init>(SQLiteProgram.java:58)
  25. at android.database.sqlite.SQLiteQuery.<init>(SQLiteQuery.java:37)
  26. at android.database.sqlite.SQLiteDirectCursorDriver.query(SQLiteDirectCursorDriver.java:44)
  27. at android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1314)
  28. at android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1253)
  29. at com.veshnevsky.bussmela.fragments.FragmentBus.onCreate(FragmentBus.java:93)
  30. at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:796)
  31. at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1035)
  32. at android.app.BackStackRecord.run(BackStackRecord.java:635)
  33. at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1397)
  34. at android.app.FragmentManagerImpl$1.run(FragmentManager.java:426)
  35. at android.os.Handler.handleCallback(Handler.java:615)
  36. at android.os.Handler.dispatchMessage(Handler.java:92)
  37. at android.os.Looper.loop(Looper.java:137)
  38. at android.app.ActivityThread.main(ActivityThread.java:4745)
  39. at java.lang.reflect.Method.invokeNative(Native Method)
  40. at java.lang.reflect.Method.invoke(Method.java:511)
  41. at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
  42. at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
  43. at dalvik.system.NativeStart.main(Native Method)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement