导入 csv 到 sqlite3 崩溃

发布于 2024-09-10 09:02:00 字数 152 浏览 0 评论 0原文

我有一个以逗号分隔的 csv 文件。我对它的导入方面没有问题,除了当导入到达这样的行时:

1,2,3, Canada's,5, 6,7

当到达单引号时导入崩溃。有谁知道我可以使用一个程序将 csv 文件导入到 sqlite 数据库中,而不必删除所有单引号?

I have a csv file that is comma delimited. I have no problem with the importing aspect of it except for when the import reaches a line like this:

1,2,3, Canada's,5, 6,7

The import crashes when it reaches the single quote. Does anyone know of a program I could use to import my csv file in to sqlite database without having to get rid of all my single quotes?

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

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

发布评论

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

评论(1

可是我不能没有你 2024-09-17 09:02:00

在命令行(即在终端中)尝试此操作:

cat filename.csv | sed "s/'/\\\\'/g" > new_filename.csv

这将创建一个新文件,其中所有单引号都用反斜杠转义,这应该允许您导入它。当然,这取决于您的导入程序是否识别反斜杠,但值得一试:-)

Try this on the command line (i.e. in Terminal):

cat filename.csv | sed "s/'/\\\\'/g" > new_filename.csv

That will create a new file with all the single quotes escaped with a backslash, which should allow you to import it. Of course, it depends on whether your importer recognizes backslashes, but it's worth a try :-)

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