oracle数据库中的阿拉伯字符

发布于 2024-10-05 00:00:17 字数 315 浏览 6 评论 0原文

亲爱的大家,我正在努力做到以下几点。

我想在我的数据库中存储阿拉伯字符,但问题是它们的存储方式是“???” ????'。我尝试过这些功能:

msg_txt:=convert(msg_txt, 'AR8MSWIN1256', 'AR8ISO8859P6');

但我收到此错误:

ORA-01858: a non-numeric character was found where a numeric was expected

请问有什么建议吗?

谢谢

Dear all, I am trying to do the following.

I want to store Arabic characters in my database but the problem they are stored like that '??? ????'. I have tried with these function:

msg_txt:=convert(msg_txt, 'AR8MSWIN1256', 'AR8ISO8859P6');

but I got this error:

ORA-01858: a non-numeric character was found where a numeric was expected

any suggestion please?

thanks

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

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

发布评论

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

评论(2

如痴如狂 2024-10-12 00:00:17

您的数据库和国家字符集是什么?如果您不确定

SELECT *
  FROM v$nls_parameter
 WHERE name LIKE '%CHARACTERSET'

msg_txt 变量的数据类型是什么? CHAR/VARCHAR2?或者 NCHAR/NVARCHAR2?

What is your database and national character set? If you're not sure

SELECT *
  FROM v$nls_parameter
 WHERE name LIKE '%CHARACTERSET'

What is the data type of the msg_txt variable? CHAR/ VARCHAR2? Or NCHAR/ NVARCHAR2?

岁月蹉跎了容颜 2024-10-12 00:00:17

确保数据类型为 nvarchar (unicode)

make sure the data type is nvarchar (unicode)

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