If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Problems with swedish/icelandic/german characers from database

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-23-11, 08:16
bajaren bajaren is offline
Registered User
 
Join Date: Jul 2011
Posts: 2
Problems with swedish/icelandic/german characers from database

I added this post in the php section as well, dont know which is the best....

Hi.
I am not very experienced with databaseprogramming but I have made a simple database for a android application and it wont work properly.

When I am gonna test my database from index.php I have a table called NEWS, it contains the int ID, text ARTIKELTEXT and text RUBRIK columns.
If I try Select * from NEWS the result from ID and ARTIKELTEXT will work fine but the result from RUBRIK which contains both swedish and icelandic characters the result gets "null".

If anyone now how to make it work I would be very thankful.

In my database the textcolums are latin1_general_ci
When I save my index.php file in Notes the code is ANSI
In my android application I have iso-8859-1 in BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),;"

This is the way my index.php file looks like:

<?php
$con = mysql_connect("WEBBHOST","MY SQL USER","MY SQL PASSWORD");
if(!$con)
{
die(' funkar ej: ' . mysql_error());
}
mysql_select_db("DATABASE", $con);
$q=mysql_query("SELECT * FROM news");
while($e=mysql_fetch_assoc($q))
$output[]=$e;
print(json_encode($output));
mysql_close();
?>
Reply With Quote
  #2 (permalink)  
Old 07-25-11, 02:54
pasthana@netlink. pasthana@netlink. is offline
Registered User
 
Join Date: Jul 2011
Location: India
Posts: 13
Hi,
you need to change your column character set to utf8 for storing unicode character in database.

i have face that type of problem when i am creating application with unicode support .i change my table column character set to utf8 to store unicode character,also i have chage in web.config file and add characterset="utf8" in connectionstring.

Hope it help

all the best
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On