智能手机上的数据库如何运行?
我试图写一篇关于现代智能手机(Android、Symbian、iOS、BlackBerry)中的数据库如何运行的文章,但是尽管进行了大量搜索,但在互联网上找不到任何材料。任何链接或输入形式的指针将不胜感激。
Im trying to write an article on how databases in modern day smart phones(Android,Symbian,iOS,BlackBerry) operate, however couldn't find any material on the internet, despite searching quite a bit. Any pointers in the form of links or input would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们都使用SQLite。
简单来说,它是一个无服务器 SQL 数据库。或者换句话说,C 库接受 SQL 命令并返回从单个文件中存储的数据读取(或写入)的结果。
它的代码非常紧凑,当您不需要大量并发时效果很好。
they all use SQLite.
Simply put, it's a serverless SQL database. Or in other words, a C library that takes SQL commands and returns results as read from (or written on) the data stored in a single file.
It's really compact code and works great when you don't need heavy concurrency.