Does Oracle 9i Lite supports Thai language?

We are developing mobile application[residing in a laptop] using java and Oracle 9i lite version [Release 5.0.2]. The application has English and Thai version. After we upload all the data[thai and english phrases] to Oracle lite from server [residing in Sun Solaris, Oracle 91] we were able to see the Thai characters in mobile, but for some phrases there is an extra English character amended to the phrase. We are not doing any char conversion here, just collecting the data from server and inserting to lite version DB.
Entries in polite.ini are,
[All Databases]
DatabaseID=501
DataDirectory=C:\oracle\ora90\Mobile\Sdk\OLDB40
NLS_LOCALE=ENGLISH
MessageFile=C:\oracle\ora90\Mobile\Sdk\BIN\OLITE40.MSB
DBCharEncoding=Native
When i ran through the release document for Oracle9i Lite Release 5.0.2, i can relalize that it is not supporting Thai language. Correct me if i am wrong.
Did any of the latest Lite version supports Thai language. How about 10g? Or any alternatives is there in Release 5.0.2 itself.
Thanks and looking forward for your reply.
Best Regards,
Muthu

Hello,
I am not sure to understand your question.
Oracle Lite is a SQL Database , and you can access it from Oracle Application Server using the correct JDBC driver and then use the JSP Tag libs to access the data (JSTL SQL) or any JDBC API in J2EE.
If I am not answering your question please add more details about what you are trying to achieve...
Regards
Tugdual Grall

Similar Messages

  • Does UTF-8 encoding support Thai language in Endeca Search?

    Hi,
    We have a requirement to configure Endeca search in Thai language. Does UTF-8 encoding on all the configuration files and for incoming data (Record Adapter) create issues with Thai character set? If yes, then please let us know which type of encoding will fix the issue? I am using the Endeca 6.4.0 for search configuration.

    Hi
    You should use the OLT analyzer as the Latin-1 analyzer doesn't support all the character codes used by the Thai language. Some words do not use these unsupported character codes, but many words will (any that contain tone marks), and searches for these will not return the correct results. Also the Thai language doesn't use whitespace segmentation so multi-term searches will not work correctly. Finally for ongoing support your best bet would be to use the officially recommended analyzer for this language, which is the OLT one.
    In terms of the unavailability of certain features, is there any one of those features that you require? Note diacritic folding is (I believe) scheduled to be added in the next release, however this shouldn't be required in Thai to the best of my knowledge as the diacritics are integral to the language. If you need one or more of the other features then I'd recommend raising an SR as the more customers require this for OLT analyzer languages the greater the likelihood that support will be added for this.
    Thanks
    Michael

  • Does Adove FrameMaker 7.0 support Thai language?

    Hello,
    after creating a sample document with some Thai text, I save it as MIF 7.0 . There is a prompt saying that saving in this format will cause loss of information related to new features. Then, after reopening the file in FrameMaker instead of Thai characters i get question marks.
    I'm using Adobe FrameMaker v10 , Thai Kedmanee keyboards, my text is written using font that supports Thai characters (Angsana New) .
    So, ladies and gentlemen - is there anything i can do with this or FrameMaker 7.0 just does not support Thai language?
    Thanks in advance,
    Chris

    Your Angsana New is likely a Unicode font. When you type Thai characters in it, what goes into the document is 3-byte UTF8 from the U+0E00 codepoint block. These are completely different binary values vs. the 8-bit code page 874 legacy encoding for Thai overlay fonts, and may not even have the same ordering of glyphs in the block.
    You're going to need a legacy 8-bit Thai font, possibly Angsana code page 874, and you'll need to know the mapping. On Windows, you'll might even have to type them as Alt sequences, based on the {128-255 decimal?) values of the code points. Alternatively, Windows will have a keyboard mapping for code page 874.
    ISO/IEC 8859-11:2001, code page 874 is apparently not the same as TIS-620, if that matters.
    Now entering the Unicode parking lot.
    Do not back up.
    Severe text damage may result.

  • Does Apple have plan about Thai Language support on "iPod" device? (especially iPod Classic)

    Hello Guys,
    My name is Dithapong from Thailand, and I'm one of the big fans of Apple products.
    I love music, so the "iPod Classic" is the latest device I've bought. The sound is great, more than other iDevice
    Only one problem for me, the iPod classic does not support Thai language,
    so it's hard for me to play or search Thai song (it show 'blank' in iPod) which is my native language ><
    So, I wanna know that, does Apple have plan to release new firmware which have Thai Language support on iPod device?
    I and many iPod lovers in Thailand will be very much happy you (Apple) do.
    Could you please give my an answer? whether it is Yes or No (with the reason)
    Thank you very much
    Dithapong

    Nobody in these forums can tell you anything about Apple's plans, but you can ask them for the feature you want via
    http://www.apple.com/feedback

  • Does Oracle XML Parser support double byte charset?

    Hi,
    Does Oracle XML Parser support double byte characters such as Korean or Chinese? If so, please tell me what version and how to construct xml/xsl files (...encoding="???")?
    Thanks for any help,
    Tuan

    Hi Raymond,
    Thank you for your help. It worked when I running in JDeveloper with your posted code. However, when I tried in my real application, it won't work.
    The problem is for localization purposes, my application using some texts display in browsers are saved in Unicode file. Later, application runs and depends on languages setting in browsers, with JavaServlet retrieves those texts and saves in formated xml StringBuffer. Then, using existed XSL Stylesheet file and OracleXMLParser to generate an output HTML.
    It has worked fine with English, France or others (single byte characters), but it can't
    for double bytes character such as Korean or Chinese. I also tried different charset in xml file.
    The following is one of returning errors:
    -- oracle.xml.parser.v2.XSLException: XSL-1004: Error while parsing input XML document (<Line 1, Column 552>: XML-0221: (Fatal Error) Invalid char in text.)
    I run this app in win2000/IIS with ServletExec3.0, JDK1.2.2 and OracleXMLParser v2.0.2.10
    Thank you for any helps,
    Tuan
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Raymond Hayes Jr ([email protected]):
    Nothing fancy 'cause I'm half asleep but I used your xml/xsl and it seemed to work. No errors anyway. This is what I put together in JDeveloper 3.2
    package demo;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import oracle.xml.parser.v2.*;
    public class CuriosityKilledTheCat extends HttpServlet {
    * Initialize global variables
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    * Service the request
    public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    try
    XSLStylesheet xsl = new XSLStylesheet( new URL ("file:///c:\\temp\\input.xsl") , null );
    XSLProcessor xp = new XSLProcessor();
    XMLDocument xd = new XMLDocument ();
    XMLDocumentFragment xf = new XMLDocumentFragment();
    xf = xp.processXSL ( xsl , new URL ( "file:///c:\\temp\\input.xml") , null );
    System.out.println ( "here" );
    xd.appendChild( xf );
    xd.print ( response.getOutputStream() );
    catch ( Exception e )
    System.out.println ( e.getMessage() );
    * Get Servlet information
    * @return java.lang.String
    public String getServletInfo() {
    return "demo.CuriosityKilledTheCat Information";
    }<HR></BLOCKQUOTE>
    null

  • Does the new iwork support arabic language

    does the new iwork support arabic language?

    mhmayad wrote:
    does the new iwork support arabic language?
    iWork apps like Pages can usually display Arabic correctly but have various bugs that probably make them unsuitable for this language for most purposes.

  • Oracle 9i Lite supports taglib

    i want to know wheter Oracle 9i lite supports taglib or not?.also i need all the informations about the jsp versions in oracle 9i lite
    regards
    senthil.

    Hello,
    I am not sure to understand your question.
    Oracle Lite is a SQL Database , and you can access it from Oracle Application Server using the correct JDBC driver and then use the JSP Tag libs to access the data (JSTL SQL) or any JDBC API in J2EE.
    If I am not answering your question please add more details about what you are trying to achieve...
    Regards
    Tugdual Grall

  • Does Oracle 10G R2 support installation on Windows 2003 Domain Controller?

    Does Oracle 10g R2 support installation on Windows 2003 Domain Controller? I remember that 10g R1 had issues with the DC? Is it still the case. Does it work now?
    Any help is appreciated.
    Regards,
    Raghav

    We have Oracle 10g R2 running on a Windows 2003 domain controller. It was not a domain controller when Oracle was installed. The domain was created after installation. (I don't recommend that procedure. I spent a long day fixing the installation after they configured the domain.) If Oracle is unhappy with being on a domain controller, it has not shown it yet.

  • How to make KDE to support Thai language?

    Hi, I wander if anyone can help me with this. I am looking for a guide for making KDE support Thai language. I know that Gnome support it, but not KDE. I cannot find KDE i18th package for Thai. Anyone can help with this? Many thanks.

    Do you mean if I have to use Thai language, I have to build package from sourcecode. Well, package builing looks very complicated. I will run Gnome instead then, at least someone has already wrote guides on Wiki. I have to wait until Arch got Thai language package for KDE then I will go back to use KDEMod again.

  • Anyone Could tell Apple to support Thai language, please.

    I'm in Thailand. The iPod are sold for a large amount. But long time the Thai support are not solved. The prior model can be craked the firmware to support Thai. The new 2nd generation iPod Nano is locked the firmware, Nobody can craked it.
    Why not Apple do the official firmware to support Thai language? This is a big problem to iPod user in Thailand. Many people sell the 2nd generation to get back to the older one that can craked it.
    Sincerely.
    Your customer.

    Click here and fill out the form.
    (23664)

  • Why the iPod does not support Thai language

    Why the iPod does not support the Thai language? iTunes supports it. If I drag a song with ID3 tags into my iPod the title becomes blank. If I remove the ID3 tags the title displays but the enconding of the characters are inccorect.

    Why the iPod does not support the Thai language?
    The languages supported by the iPod are listed in detail in its tech specs:
    http://www.apple.com/ipod/specs.html
    Hopefully future versions will expand the list to included Arabic, Hebrew, Thai, Vietnamese, Hindi, etc.

  • Does Photoshop CS3 Extended support Thai fonts?

    I am translating some short text in Photoshop to several Asian languages. I noticed just with the Thai language, that I get a series of X's with boxes instead of Thai characters. The characters are fine in other applications, including Flash CS3. Other than taking a screenshot in another app and pasting into Photoshop, does anyone know of a workaround? Should I install a particular Thai font that is supported by Photoshop? I am running Photoshop CS3 Extended on Windows XP. Thanks for any help.

    So in my search, the only thing I found was a utility downloadable at CNET http://download.cnet.com/ASK-Square-Free-Version/3000-2316_4-10855142.html
    "ASK Square works efficiently with well-known graphic software such as Adobe Photoshop 7, CS, CS2, CS3 and CS4. It enables users to use of all Thai characters. Users can type all Thai characters, even troublesome characters like. This software also corrects excessively high vowels while typing or after typing just by only one click. Further more it can transform illegible font to normal font that happens when changes a texts font, to a readable normal font. If users copy texts from external application such as word processing or spreadsheet software and paste those texts into their graphic software, ASK Square software can correct the wrong-encoded texts automatically.
    ASK Square is flexible. It enable user to type Thai non-unicode font on Adobe Photoshop. Version 1.5.0.10 supports Adobe Photoshop CS4."
    Funny thing is you can tell their sales pitch was loosely translated. I gave it a try anyway. The instruction PDF was in Thai, their website was in Thai. But I felt brave anyway, seeing as I googled this application title and didn't see anything negative written about it. Then I go to the application icon in the system tray. As you can see from my screenshot, it ain't exactly user-friendly.
    Bottom line... it didn't work. Anyone out there have a solution? I've searched everywhere... Am I the only one with this problem?

  • Oracle 11g and Supported Programming Languages for application development

    Hi,
    Currently we are running our Java application on Oracle 10g Lite. We are planning to upgrade to Oracle 11g Lite very soon. I have below queries to be answered.
    1. What are the programming languages supported for application development to work with Oracle 11g Lite mobile server and client ?
        - i have seen some note saying java and .net are supported. Wanted to know the complete list of supported programming languages on Oracle 10g Lite
    2. Oracle Forms 10g is supported on Oracle 11g Lite platform ?
        - i have some online application running on Oracle 10G Forms. Wanted to extend this to offline model using Oracle 10g Lite
    Thanks,
    Ashok Kumar.G

    Hi Ashok,
    1. What are the programming languages supported for application development to work with Oracle 11g Lite mobile server and client ?
                For the 11g version of the product, we changed the name to Oracle Database Mobile Server.    For clarity purposes, there is no product called Oracle 11g Lite mobile server.
                For a detailed list of what is/is not supported on the client, please consult the documentation.   See section 2.1 of the Mobile Client guide.  For programming languages you
                can use what you want, and we support the following technologies, JDBC, ODBC, ADO.NET.  What you code your application in is up to you.
    2. Oracle Forms 10g is supported on Oracle 11g Lite platform ?
                   On the database mobile server side of things we do not do testing with Oracle Forms 10g.    I do not know enough about applications developed with the Forms' product.   Database Mobile Server is a product that keeps tracks of changes that occur in a database, and then propagates those changes to an Oracle backend.   We offer 2 way synchronization between an Oracle backend database and a client.  If you are running the Forms application on the Oracle backend and want to propagate changes done out to the client, then this should work.    I say ** should **   because we have not tested it but I cannot think of a reason why it would not work.   It would be up to you to develop the client side application that would look at the data in the client database and display it to the user.    In the 11.x version of the product, we support 2 client databases, Berkeley DB and SQLite.
    thanks
    mike

  • Does Oracle Advanced Queueing support JRockit?

    Does anyone know if Oracle Advanced Queueing supports JRockit (1.5 or 1.6),
    or better still, does anyone have experience using this?

    AQ is an in-database implementation of Java Messaging Service (JMS).
    With that in mind could you please ask your question again including specifics as to what you are thinking.

  • Can iPod Nano Support Thai language?

    I just bought an iPod Nano, sync it with iTune. In iTune, Thai text came up fine, but after syncing it with iPod Nano, Thai text didn't turn up. Hope anybody will be able to help or at least just clarify that it simply doesn't support Thai? Thank you very much.

    There is a hack available that may let your ipod support Thai. See this FAQ for a link:
    Tom Gewecke, "Fixing Language Problems in iTunes/iPod", 05:49pm Dec 5, 2004 CDT

Maybe you are looking for

  • Upgrade from 4.0.3 to 5.0 or 6.0?  And how to reduce size of photo?

    I am using an old iMac installed with Mac OS 10.3.9 and iPhoto 4.0. If I want to upgrade to iPhoto 5.0 or 6.0, can i do it using the current OS? And is it free like iTunes upgrade? I also need to reduce the size of a pic from several hundred KBytes t

  • Path palette: What's wrong with "path share" and "path exclude"?

    Hi everybody. First of all: Sorry for my english, but I hope someone can understanding me. Well, I want to work with Fireworks in the future because I think that this programm keep in some situation more efficience as Photoshop... So I was trying to

  • Restrict Material Master View

    All, I have a role to view material master data which contains tcodes MM03 / MM04.  I would like to prevent the users from viewing Accounting & Costing views.  Using object M_MATE_STA and the appropriate values in the STATM field this has worked corr

  • Dynamic UI control "type"

    Hello, I am attempting to find the best way to handle the following situation: I have a form with two elements: a drop down list and an input field. The drop down has multiple values.  Based on the value selected, the input field will need to be boun

  • Disappearing drive

    I am in the process of setting up a new mac lab at my school and was struggling with the initial server setup when something strange happened. Okay so my lab's brand new MacPro (what is to be the server) came with TWO 1GB HD installed. I had set up t