有没有什么工具可以处理iPhone中的sqlite操作
我是 iPhone 中的 sqlite 新手。
我正在创建表并将值插入到该表中。
但发生的情况是我没有得到天气表是否创建,天气值是否插入。
对于 nsurl Web 请求,我们有一个名为 charles
的工具。通过它,我们可以找到发送请求时正在进行哪些操作,或者我们收到了什么响应。
这样我们就可以很容易地发现错误。
是否有任何用于 sqlite 的工具来检查天气表是否创建或未插入值或通过在我们的应用程序中以编程方式检查天气表是有些困难。
所以专家们可以建议一下是否有任何工具可以在 iPhone 中处理 sqlite 操作。
i am new to sqlite in iphone.
i am creating table and inserting values into that table.
But what happen is i did n't get weather table is create or not,weather values are insert or not.
For the nsurl web requests we have a tool named charles
.With this we can able to find which operations is going on is request is sent or not what response we got.
So that we can able to find mistakes very easily.
is there any tool for sqlite,to check weather table is create or not values insert or by programmatically in our application is some what difficult.
So experts can any one please suggest is there any tool to handle sqlite operations in iphone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有这样的工具可以在运行时跟踪操作(插入、删除等),但是一旦完成任何一项数据库操作,您可以使用名为的 adds On 检查表内容SQLite Manager ,它安装在 Mozilla Web 浏览器上,
SQLite Manager 具有以下功能...
管理计算机上的任何 SQLite 数据库。
显示数据库对象的直观层次树。
用于管理表、索引、视图和触发器的有用对话框。
您可以浏览和搜索表格,以及添加、编辑、删除和复制
记录。
执行任何 sql 查询的工具。
也可以搜索视图。
下拉菜单有助于 SQL 语法,从而使编写 SQL 变得更容易。
通过菜单、工具栏、按钮和上下文菜单轻松访问常用操作。
以 csv/xml/sql 格式导出表/视图/数据库。从 csv/xml/sql(UTF-8 和 UTF-16)导入。
可以在“执行”选项卡中执行多个sql语句。
您可以保存查询。
支持 Windows 上的 ADS。
的链接
这是安装https://addons.mozilla.org /en-us/firefox/addon/sqlite-manager/
这是一个很棒的工具,可以轻松地处理 sqllite 数据库。
There is no such tool for tracking operation (insertion,Deletion etc.) at run time, but once you done with any one of your DB operation,you can check the table content by using a adds On called SQLite Manager , it install on Mozilla web browser,
SQLite Manager has the following feature...
Manage any SQLite database on your computer.
An intuitive heirarchical tree showing database objects.
Helpful dialogs to manage tables, indexes, views and triggers.
You can browse and search the tables, as well as add, edit, delete and duplicate the
records.
Facility to execute any sql query.
The views can be searched too.
A dropdown menu helps with the sql syntax thus making writing sql easier.
Easy access to common operations through menu, toolbars, buttons and context-menu.
Export tables/views/database in csv/xml/sql format. Import from csv/xml/sql (both UTF-8 and UTF-16).
Possible to execute multiple sql statements in Execute tab.
You can save the queries.
Support for ADS on Windows.
and here is the link to install
https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/
It's great tool that make very easy to work on sqllite database.