在sqlite中保存多个文本行
我想知道如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解析出新行并将其替换为其他内容,例如
$%&%$
,然后在从数据库获取时将新行放回原处。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.