Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
My WebSQL 包含纯文本格式 (dataURIs) 的图像。我正在捕获照片数据并将其保存在 HTML5 WebSQL 数据库中。如何找到保存的数据大小?
当我使用 SELECT 查询来检索它时,我得到了一个太大的结果集错误:'TOO_LARGE_ERR'。
谁能帮我找到这个?
谢谢你。
将长度函数与LIMIT子句一起使用:
SELECT length(datauris) FROM foo LIMIT 1,1
参考