Extent 2: passing string to database with utf8 encoding results in invalid chars
Posted by: Sven Bisaro
Date: March 17, 2005 07:09AM

This is the script I use to create my test db:

drop database monkey;
--Create database
--
create database if not exists monkey character set utf8;
use monkey;
--
--Create tbl_article
--
create table if not exists tbl_monkey(pk_monkey_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
monkey_name varchar(255)) engine innodb;
desc tbl_monkey;

Options: ReplyQuote


Subject
Views
Written By
Posted
Extent 2: passing string to database with utf8 encoding results in invalid chars
2679
March 17, 2005 07:09AM
2695
March 23, 2005 08:47AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.