![]() |
2010-10-05
, 07:53
|
|
Posts: 1,411 |
Thanked: 1,330 times |
Joined on Jan 2010
@ Tatooine
|
#2
|
![]() |
2010-10-05
, 10:49
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#3
|
Sqlite Database Browser is probably the most complete I found but it seems to depend on qt3
![]() |
2010-10-05
, 11:57
|
|
Posts: 722 |
Thanked: 1,223 times |
Joined on Apr 2010
@ USA
|
#4
|
The latest version of Sqlite Database Browser seems to depend on Qt 4.6.
![]() |
2010-10-10
, 13:52
|
Posts: 136 |
Thanked: 115 times |
Joined on Jul 2010
@ Greece
|
#5
|
![]() |
2011-05-31
, 02:51
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#7
|
#else m_pMainWindow->show(); #endif
#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) m_pMainWindow->showMaximized(); #else m_pMainWindow->show(); #endif
The Following User Says Thank You to daperl For This Useful Post: | ||
![]() |
2011-05-31
, 11:36
|
|
Posts: 722 |
Thanked: 1,223 times |
Joined on Apr 2010
@ USA
|
#8
|
@fcrochik
In application.cpp, I had to change:
toCode:#else m_pMainWindow->show(); #endif
in order to stop seg faulting on an n900. I'm guessing this has to do with changes in the most recent Qt libraries and/or development tools.Code:#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) m_pMainWindow->showMaximized(); #else m_pMainWindow->show(); #endif
Love the app!
![]() |
2011-05-31
, 15:56
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#9
|
If that is the case it is a really big bug with Qt. What do you mean by new Qt libraries?
CSSU libraries?
![]() |
2013-08-06
, 21:06
|
Posts: 2 |
Thanked: 0 times |
Joined on Aug 2013
|
#10
|
Just uploaded to extras-devel a very simple utility to browse sqlite databases on the n900. I created it mainly to help me develop/debug my other applications.
It allows you to browse databases created by other applications or create new sqlite databases and run sql queries against them.
It automatically detects sqlite database files regardless of the filename extension and allows you to browse hidden folders.
Not sure if it will be helpful to non-developers as it is but, if nothing else, some people may find interesting to see what other applications are storing on their phones.
As always, please let me know your comments/suggestions....
Known Issues:
As now you can edit the data in a table but the changes will not be saved to the database.
Notes:
I tried to find a application that I could port to the n900 but didn't find anything suitable:
My maemo work:
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
For Harmattan:
GeePS - native UI around google maps - GApp - access to optimized mobile "google apps".
Shutdown - shutdown and reboot with one click - QuickCall - one click call, skypeout and google voice integration using dial tones.
WakeOnLan - wake computers on your local network.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
For Maemo/N900:
GApp - access to optimized mobile "google apps". - MobWebMail: browser optimized to access multiple gmail accounts
MyContacts: 75 Contacts on your desktop, ring tones per group and more - GeePS: native front-end for google maps
Macuco2 : web browser to access web sites optimized for the iphone - WakeOnLan: wake up computers on your local network
dbBrowser: Simple application to browse sqlite databases
Last edited by fcrochik; 2010-10-05 at 02:45.