Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 .NET 程序中,当我在 oracle 中存储长度 > 2000 的数据时,出现错误
system.string can't bind blob
归档类型是blob,程序的数据类型是“字符串”。
blob
所以,我想知道如何存储长度> 2000的数据。
Blob 字段在 .net 中表示为字节数组,您可以将字符串从/转换为字节数组,如下所示:
byte[] blob = System.Text.UnicodeEncoding.Unicode.GetBytes(yourstring); string yourstring = System.Text.UnicodeEncoding.Unicode.GetString(blob);