English 中文(简体)
将“欧元”特性纳入ISO-8859-1a数据库
原标题:Encoding the "€" character in an ISO-8859-1 Oracle database

能否将“欧元”列入一个名为ISO-8859-1的Oracle数据库?

I want to move from ISO-8859-1 to ISO-8859-15 charset (or even WINDOWS-1252 charset will fit) my database in order to store the "€" in my database, but one told me that with a ISO-8859-1 charset for the database, it WOULD BE possible to store directly my "€" char.

因此,问题在于,目前我正试图为ISO-8859-1数据库找到这一解决办法;将意味着插入“欧元”(取决于客户/drivers/etc的果园,但不取决于数据库的果园)。

你们对此有何看法?

如果是真的,就说明为什么我们必须界定Oracle数据库的特性? 一名发言者告诉我,这只是为了Oracle,“知道需要多少 by子才能形成特性”(因此,选择一个char体相当于只选择了甲骨文的一些比照,以编码每种特性。 最后:ISO-8859-1 =ISO-8859-15-WINDOWS = 1252, 某些方式是甲骨质,因为所需比照数相同。

I hope I am (almost) clear.. But in my opinion I think that I will never be able to perform an INSERT (with "€") and SELECT and retrieve my "€" on a ISO-8859-1 database...

感谢阅读我。

(PS:数据库为10g版本)

最佳回答
问题回答

暂无回答




相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...