SQL or UNICODE
Hi again............
I have got something new that...........
i was using MS Access as the database with my JAVA Japplet....
In my applet i used JTextArea to display the output .....
The output to display is fetched from the database which is connected using DSNless connection as with connection string...
My database contains two columns one with having ASCII and other With UNICODE
1]
when i trying to pass parameter to database i.e UNICODE and fetches ASCII it retrieves nothing to display
2]
when trying to pass parameter ASCII and fetches UNICODE it retrieves only [????] but exactly the same number of chars stored in DATABASE.......
acc. to me their is problem in SENDING and Retrieving the database bcz when trying to fetched ASCII it fetches the exact match and displays......
but with UNICODE nothing ......
I had also change my backhand to SQL SERVER but retrieves same for UNICODE [????] ..............
thanks
waiting for reply
View Answers
April 19, 2010 at 1:20 PM
Hi Friend,
In Access database, declare the data type 'Text' to both the fields.
You can use the following code to fetch the UNICODE value.
import java.sql.*;
import java.util.*;
class MSAccess{
public static void main(String[] args) {
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:access");
Scanner input=new Scanner(System.in);
System.out.println("Enter Ascii value: ");
String ascii=input.nextLine();
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select UNICODE from Data1 where ASCII='"+ascii+"'");
if(rs.next()){
System.out.println(rs.getString("UNICODE"));
}
}
catch(Exception e){}
}
}
Hope that it will be helpful for you.
Thanks
April 20, 2010 at 6:46 PM
Ya i have Tried ..........
Can u make me sure THE UNICODE and ASCII are the columns nams......or something other
....................
thanks for posting reply........If u can contact me at
[email protected] plz urgent.......needed
also can u tell me the method to use CLOB in java
Related Tutorials/Questions & Answers:
SQL or UNICODE - SQLSQL or
UNICODE Hi again............
I have got something new... ......
I had also change my backhand to
SQL SERVER but retrieves same for
UNICODE... ASCII and other With
UNICODE
1]
when i trying to pass parameter to database i.e
UNICODE or SQL statement issue - JDBCUNICODE or
SQL statement issue Hi again............
I have got... with having ASCII and other With
UNICODE
1]
when i trying to pass parameter to database i.e
UNICODE and fetches ASCII it retrieves nothing to display
2
Advertisements
Unicode - JDBCUnicode hi
i wanna retrieve
Unicode values from the database...) or IN doc or RTF or WEB page
it get the
UNICODE as ?????
what can i do so
Language JAVA
platform XP
database
SQL Server and MS ACcess
Java UnicodeJava Unicode To insert
Unicode word into MySql database using Java
Java UnicodeJava Unicode To insert
Unicode word into MySql database using Java
unicode - Swing AWTunicode hi
i wanna retrieve
Unicode values from the database...) or IN doc or RTF or WEB page
it get the
UNICODE as ?????
what can i do so
Language JAVA
platform XP
database
SQL Server and MS ACcess
unicode charactersunicode characters class
Unicode
{
public static void main(String args[])
{
char ch='\000a';
System.out.println("ch is:"+ch);
}
}
on compilation this gives following errore::
CharLiteral6.java:5: error: illegal line end
unicode charactersunicode characters class
Unicode
{
public static void main(String args[])
{
char ch='\000a';
System.out.println("ch is:"+ch);
}
}
on compilation this gives following errore::
CharLiteral6.java:5: error: illegal line end
unicode charactersunicode characters class
Unicode
{
public static void main(String args[])
{
char ch='\000a';
System.out.println("ch is:"+ch);
}
}
on compilation this gives following errore::
CharLiteral6.java:5: error: illegal line end
ModuleNotFoundError: No module named 'unicode'ModuleNotFoundError: No module named '
unicode' Hi,
My Python... '
unicode'
How to remove the ModuleNotFoundError: No module named '
unicode... to install padas library.
You can install
unicode python with following command
Java unicode - Java BeginnersJava unicode I can read
unicode character(malayalam language character) from a file but not able to print the character without installing a malayalam font(corresponding language font). Please help me to solve
Unicode - Java BeginnersUnicode How to print
unicode value of a char. Eg. /u0000 on console(default value of a char) Hi Friend,
Try the following code:
import java.io.*;
import java.util.*;
public class
Unicode {
public static
ModuleNotFoundError: No module named 'unicode_tr'ModuleNotFoundError: No module named '
unicode_tr' Hi,
My Python... '
unicode_tr'
How to remove the ModuleNotFoundError: No module named '
unicode_tr' error?
Thanks
Hi,
In your python environment you
How java work on Unicode machanish How java work on
Unicode machanish How the data are stored in java as
unicode, how the conversions is done for input/output stream.
Please describe in detail with memory aspect
sqldifference between
sql and oracle what is the difference between
sql and oracle
sqlsql how to get first row in
sql with using where condition in
sql?
how to get last row in
sql with using where condition in
sql sqlsql I want interview
sql questions
Please visit the following link:
SQL Tutorials
Conversion of unicode to its corresponding characterConversion of
unicode to its corresponding character i have a string of unicodes e.g String s="\c0059\c0049\c3000" ..
i need code for converting these unicodes to its corresponding alphabets..
pls if possible rep asap as i need
SqlSql how to find maximum of a101,a102,a103 from a table in
sql