智能手机上的数据库如何运行?

发布于 2024-12-23 05:30:33 字数 110 浏览 1 评论 0原文

我试图写一篇关于现代智能手机(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北音执念 2024-12-30 05:30:34

他们都使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文