aSQLiteManager这个工具可用于管理Android中的SQLite数据库。SQLite是一个小巧、快速、嵌入式的SQL数据库引擎,支持SQL92,同时支持跨平台系统,无需系统服务,只有一个db文件,可移植性很好。aSQLiteManager支持以下功能:

  1. 支持打开来自aSQLiteManager和其它文件管理器的数据库。(包括OI File Manager,Adao Teams File Manager,以及 Simplest File Manager )。
  2. 列举数据库中的表格,视图和索引
  3. 展示表格和视图中的数据
  4. 任何被点击的单元格内容都将被复制到剪切板中
  5. 可以执行任何SQL包括:'Drop' / 'Create'语句
  6. 所有执行过的语句都保存在打开的数据库中,在一个叫aSQLiteManager的表格中。
  7. 可以从查询表单中选择历史SQL执行语句
  8. 支持开始事务、提交和回滚
  9. 支持将数据库导成SQL脚本并能够从脚本恢复数据库
  10. 能够将查询结果导出成一个ASCII文件
  11. Configuration of open database without question and reset of configuration
  12. 可以批量执行SQL脚本或单行执行
  13. 能够实现更好的错误处理在导出和恢复期间
  14. Data editing form table browser from Edit button at each row
  15. Data entry add record from button on title at data browser
  16. SQLite does not validata data types during data entry. aSQLiteManager translates this string into the following types and se this to set input mode (SQLite types i parenthesis). The translation is NOT case sensitive:
    • STRING(string, text)
    • INTEGER(integer)
    • FLOAT (real, float, double)
    • DATE(date)
    • TIME time)
    • DATETIME datetime)
    • BOOLEAN boolean, bool)
    • PHONENO phoneno)
    • BLOB - for the time beeing the aSQLiteManager editor does not handle BLOB fields
  17. Dump table from table view to file named Database.Table.sql- can be loaded by execute file as script
  18. 能够记住最近打开过的数据库,快速访问经常使用的数据库
<DIV class=date>收录时间:2011-06-11 23:31:47</DIV>