gpt4 book ai didi

mysql - 将 blob 字符串保存到 mysql

转载 作者:行者123 更新时间:2023-11-29 12:31:46 25 4
gpt4 key购买 nike

我正在尝试使用 utf-8 编码将字符串插入到 blob 数据类型字段中。

我能找到的所有示例都是关于存储图像,而不是字符串。

这是我尝试过的:

Using con As New MySqlConnection(ConfigurationManager.ConnectionStrings("db").ConnectionString)
con.Open()
Dim cmd As New MySqlCommand("proc_name", con)
cmd.CommandType = Data.CommandType.StoredProcedure
cmd.Parameters.AddWithValue("_description", Encoding.UTF8.GetBytes(description))
...
Dim reader As MySqlDataReader = cmd.ExecuteReader()
...

mysql:

 select convert(description using hebrew) from tableA where id=123;
returns: ????????? ???? ??? ?????? ????? ???? ????. ??? ????? ???? ???, ??? ?? ????.

(表中的现有记录通过此转换返回正常,只有新记录才是问题)

最佳答案

对于 future 可能遇到这种情况的程序员来说,问题是环境问题,它只发生在工作台窗口中,数据的存储没有问题。

关于mysql - 将 blob 字符串保存到 mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27379359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com