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 > java mysql and hebrew

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-24-04, 11:13
pelegk2 pelegk2 is offline
Registered User
 
Join Date: Nov 2003
Posts: 26
java mysql and hebrew

i am running a java program to convert hebrew to text and fix it when it is mixed with english letter.
after i convert it using a certain font that is called and done like this :
Code:
jf = new JFrame();
        label2 = new JLabel("000");
        label2.setSize(30, 300);
        label2.setFont(Font.decode("Web Hebrew AD"));
        jf.getContentPane().add(label2);
        jf.pack();
        jf.setVisible(true);
i put text into the label and then pull it out and recive the fixed string!
the problem is that when i try to insert it into the mysql DB i get there only ??????
what can i do?
thnaks i nadvance
peleg
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