在sqlite中保存多个文本行

发布于 2024-10-20 16:15:39 字数 310 浏览 0 评论 0原文

我想知道如何在 SQLite 字段中保存多行文本。

我创建一个 EditText
我用多行文本

IE 输入我的输入:

我的测试
多行
描述

当我使用如下所示的方法将文本保存在 SQLite 中时,它只保留第一行。

db.insertDescription(EditText.getText().toString());

是否可以保存所有文本而不仅仅是第一行?

I want to know how to save multiple lines of text in a SQLite field.

I create a EditText
I enter my Input with multiple lines of text

IE:

My test with
Multiple Line
Of description

When I save the text in SQLite using something like below, it only retains the first line.

db.insertDescription(EditText.getText().toString());

Is it possible to save all of the text instead of just the first line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

总攻大人 2024-10-27 16:15:39

解析出新行并将其替换为其他内容,例如 $%&%$,然后在从数据库获取时将新行放回原处。

Parse out the new lines and replace it with something else, e.g. $%&%$, and put the new lines back in when you fetch from the database.

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