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 > Data Access, Manipulation & Batch Languages > PHP > mysql>> php >> android- problem with swedish, icelandic and other characters

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-22-11, 19:04
bajaren bajaren is offline
Registered User
 
Join Date: Jul 2011
Posts: 2
mysql>> php >> android- problem with swedish, icelandic and other characters

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
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