Java1.4 vs java1.5

Hi
I want to know the main differences b/n java1.4 and java1.5.
Eventhough my google is working fine.But i want to know main differences.
Any one;plz suggest me links or explain me in brief.
Regrads
smile

I want to know the main differences b/n java1.4 and
java1.5.
Eventhough my google is working fine.But i want to
know main differences.You're kidding, aren't you?
Google :
- New Features and Enhancements - J2SE 5.0
- J2SE 5.0 in a Nutshell
- Enhancements in JDK 5
- Incompatibilities in Java 2 Platform Standard Edition 5.0 (since 1.4.2)
Where you should find everything about it: JDK 5.0 Documentation

Similar Messages

  • Problem with JAVA1.3 on HP_UX 11

    I run my application using BC4J (jbo tags) on HP_UX 11 with JAVA1.3 with a lot of memmory >2GB. But sometimes java hangs and nothing is not usefull to refresh application, I must use kill -9 <PID of java> to restart it.
    Please can you help me, what is wrong?
    email: [email protected]

    Did you recompile the code on the current machine?
    Jens

  • How can I change the setting to one appropriate to java1.2

    Hello.
    I am using WebLogic 4.5.1 .
    and recently started to use JDK 1.2 instead of JDK 1.1.7.
    So, I set [start]-[weblogic]-[Choose1.2JRE] in environment.
    and then, if I execute T3Server, the message of
    "javai.dll class path cannot be found " is displayed and the server is not
    loaded.
    However, javai.dll was in java1.1.X\bin.
    I can assume that a setting is to java1.1.X.
    --> How can I change the setting to one appropriate to java 1.2
    It's my environment
    ClassPath
    .;c:\weblogic\classes;C:\weblogic\lib\weblogicaux.jar;C:\weblogic\license;c:
    \weblogic;C:\weblogic\myserver\clientclasses;C:\weblogic\myserver\serverclas
    ses;C:\weblogic\myserver\servletclasses;C:\weblogic\mssqlserver4\classes;c:\
    weblogic\classes\boot;C:\weblogic\eval\cloudscape\lib\cloudscape.jar;c:\rmi-
    iiop\lib\iioprt11.jar;c:\rmi-iiop\lib\iioprt.jar;c:\rmi-iiop\lib\rmiorb.jar;
    C:\jsdk2.1\runner.jar;C:\jsdk2.1\servlet.jar
    Path :
    %SystemRoot%\system32;C:\jdk1.3bin;c:\weblogic;c:\weblogic\bin;
    c:\;c:\bat;c:\util\;C:\jsdk2.0\bin
    Hyung Gi Min

  • Error while creating arrayllist of datatype integer in java1.6

    hello... i had a problem while creating arraylist of type integer and float ext.. except String in java1.6.. i can create of type string..its working... and in java1.5 i can create integer type arraylist... is it possible to create arraylist of datatype integer in java1.6?... reply asap

    sugan wrote:
    hello... i had a problem while creating arraylist of type integer and float ext.. except String in java1.6.. i can create of type string..its working... and in java1.5 i can create integer type arraylist... is it possible to create arraylist of datatype integer in java1.6?... reply asap
    Be back in a few hours.

  • Strange image-cacheing in Internet-Explorer with Java1.5-Applet

    I have written a Java-Applet for showing image-slideshows.
    In short words, the applet loads an image, scales it to screen-size,
    and loads the next image when one clicks on the applet.
    The applet causes a problem in MS Internet Explorer. The memory allocated by an image is never freed. After about 30-40 images, more tham 100MB are allocated by the JVM and the JVW crashes throwing an OutOfMemoryError.
    The same Applet runs fine on Netscape and Mozilla. Here, the memory allocated is always between 8 and 25 MB, even after sliding through hundreds of images.
    Some more coordinates:
    The applet is written in Java1.5 source code. My test-system is a P4 with Windows XP SP2. I have tried out Sun's JVM 1.5.0_03 and BEA's JVM JRockit 1.5.0_02 as browser-plugins, both cause the same problem in MS-IE6.
    I have tried to replace Applet.getImage() by com.sun.image.codec.jpeg.JPEGCodec.decodeAsBufferedImage() - same results.
    I have tried to flush any loaded images explicitely in the Applet.stop()-method, but no effort.
    The images are definitely not stored in some static containers inside my applet. The problem occurs on the level of the JVM/browser-constellation.
    Now my question: Is there any trick to affect the cacheing-mechanisms of the JVM? Image.flush() does not solve the problem.
    Is this a Java1.5 bug? Or a MS-IE bug?
    Is there anything that I did not consider?
    Thanks in advance

    I have written a Java-Applet for showing image-slideshows.
    In short words, the applet loads an image, scales it to screen-size,
    and loads the next image when one clicks on the applet.
    The applet causes a problem in MS Internet Explorer. The memory allocated by an image is never freed. After about 30-40 images, more tham 100MB are allocated by the JVM and the JVW crashes throwing an OutOfMemoryError.
    The same Applet runs fine on Netscape and Mozilla. Here, the memory allocated is always between 8 and 25 MB, even after sliding through hundreds of images.
    Some more coordinates:
    The applet is written in Java1.5 source code. My test-system is a P4 with Windows XP SP2. I have tried out Sun's JVM 1.5.0_03 and BEA's JVM JRockit 1.5.0_02 as browser-plugins, both cause the same problem in MS-IE6.
    I have tried to replace Applet.getImage() by com.sun.image.codec.jpeg.JPEGCodec.decodeAsBufferedImage() - same results.
    I have tried to flush any loaded images explicitely in the Applet.stop()-method, but no effort.
    The images are definitely not stored in some static containers inside my applet. The problem occurs on the level of the JVM/browser-constellation.
    Now my question: Is there any trick to affect the cacheing-mechanisms of the JVM? Image.flush() does not solve the problem.
    Is this a Java1.5 bug? Or a MS-IE bug?
    Is there anything that I did not consider?
    Thanks in advance

  • Problem in cookie handling using CookieManager java1.6

    Hi all...
    I found that there is a no cookies are catched from http response for some web sites are requested by using CookieManager() in jdk1.6.
    following is source code where i test this case....
    import java.io.;
    import java.net.;
    import java.util.*;
    public class Fetch {
    public static void main(String args[]) throws Exception {
    String urlString = "http://www.google.com";
    //urlString = "http://apps1.ubs.com/locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1";
    CookieManager manager = new CookieManager();
    manager.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
    CookieHandler.setDefault(manager);
    URL url = new URL(urlString);
    URLConnection connection = url.openConnection();
    if (connection instanceof HttpURLConnection) {
    HttpURLConnection httpUrlConnection = (HttpURLConnection) connection;
    httpUrlConnection.setInstanceFollowRedirects(true);
    httpUrlConnection.connect();
    BufferedReader bufferedReader
    = new BufferedReader(
    new InputStreamReader(
    httpUrlConnection.getInputStream()));
    StringBuffer stringBuffer = new StringBuffer();
    String line = null;
    while ((line = bufferedReader.readLine()) != null) {
    stringBuffer.append(line);
    stringBuffer.append("\n");
    System.out.println(stringBuffer.toString());
    CookieStore cookieJar = manager.getCookieStore();
    List<HttpCookie> cookies = cookieJar.getCookies();
    for (HttpCookie cookie: cookies) {
    System.out.printf("\nCookie: %s%n", cookie);
    }It is working well using for google web site but not working for ubs.com. i give the requested page in variable urlString remove the comment at lineno 8 after finish the normal test. It will not print any cookies for this website..But i found Cookies for both web site using httprequesttracker.
    Here is Mozilla firefox request and response for both web site....
    http://www.google.com/
    GET / HTTP/1.1
    Host: www.google.com
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,/;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 302 Found
    Location: http://www.google.co.in/
    Cache-Control: private
    Set-Cookie: PREF=ID=8117eafc8d1868c5:TM=1213001085:LM=1213001085:S=iJitvzgWFvKmDTZm; expires=Wed, 09-Jun-2010 08:44:45 GMT; path=/; domain=.google.com
    Date: Mon, 09 Jun 2008 08:44:45 GMT
    Content-Type: text/html; charset=UTF-8
    Server: gws
    Content-Length: 221
    http://www.google.co.in/
    GET / HTTP/1.1
    Host: www.google.co.in
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,/;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 200 OK
    Cache-Control: private
    Content-Type: text/html; charset=UTF-8
    Set-Cookie: PREF=ID=707e00e4cd0dddda:TM=1213001085:LM=1213001085:S=kXfAKdv-DMuiSWXp; expires=Wed, 09-Jun-2010 08:44:45 GMT; path=/; domain=.google.co.in
    Content-Encoding: gzip
    Date: Mon, 09 Jun 2008 08:44:45 GMT
    Server: gws
    Content-Length: 2930Following is for usb.com website
    http://apps1.ubs.com/locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1
    GET /locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1 HTTP/1.1
    Host: apps1.ubs.com
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,/;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 302 Found
    Date: Mon, 09 Jun 2008 04:47:06 GMT
    Server: Apache
    Pragma: no-cache
    Connection: close
    Location: http://apps.ubs.com:80/locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1
    Cache-Control: no-cache
    Content-Length: 318
    Content-Type: text/html; charset=utf-8
    http://apps.ubs.com/locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1
    GET /locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1 HTTP/1.1
    Host: apps.ubs.com:80
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,/;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 302 Found
    Date: Mon, 09 Jun 2008 04:47:08 GMT
    Server: Apache
    Pragma: no-cache
    Set-Cookie: NavLB_Apps=apps1.ubs.com; Domain=.ubs.com; Path=/; Version=1; HttpOnly
    Connection: close
    Location: http://apps1.ubs.com:80/locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1&NavLB_Apps=1212986828
    Cache-Control: no-cache
    Content-Length: 345
    Content-Type: text/html; charset=utf-8
    http://apps1.ubs.com/locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1&NavLB_Apps=1212986828
    GET /locationfinder/searchForm.do?GeoEntityId=1&GeoEntityType=1&NavLB_Apps=1212986828 HTTP/1.1
    Host: apps1.ubs.com:80
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,/;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Cookie: NavLB_Apps=apps1.ubs.com
    HTTP/1.x 200 OK
    Date: Mon, 09 Jun 2008 04:47:08 GMT
    Server: Apache
    Content-Language: en-US
    Set-Cookie: JSESSIONID=0000vHz5HlsSRtRwAgUVx0Il0oW:-1; Path=/; Version=1; HttpOnly
    Cache-Control: no-cache="set-cookie,set-cookie2"
    Expires: Thu, 01 Dec 1994 16:00:00 GMT
    Content-Type: text/html;charset=ISO-8859-1
    Connection: close
    Transfer-Encoding: chunkedI dont know wat is the problem with this CookieManager() in java1.6...
    But it is working well and print cookiees
    By replace line 10
    CookieHandler.setDefault(manager);to
    CookieHandler.setDefault(new ListCookieHandler());code for ListCookieHandler.java is avalible in
    [http://java.sun.com/developer/JDCTechTips/2005/tt0913.html#1|http://java.sun.com/developer/JDCTechTips/2005/tt0913.html#1]
    please give some idea for solve this problem....

    You are using Firefox 2.x, so i think that the cookie for the usb.com website is no http cookie, it's probably a "DOM Storage"
    (if you use an actual IE instead, then the "Set-Cookie" lines may stay anyway then it will be the "userData behavior" feature of MS).
    They both are looking similar to http-cookies because they are a kind of cookie too, but with another (more common) format.
    I'm not so familar to their format, so it is only an assumption (maybe another can affirm or disprove this), but i remembered that
    DOM Storage and userData behaviour Cookies were designed to manage persist data across multiple browser sessions -
    and on the usb.com website it is indeed starting a session (JSESSIONID=0000vHz5HlsSRtRwAgUVx0Il0oW).
    (To be sure, that this is a DOM storage you have to watch the behaviour of this cookie and the server, or you can watch the
    size of this cookie over a longer periode, if it grows much greater than 4KB it is one (DOM Storage and userData behavior can
    grow of up to nearly 6 MB), or the easiest way if you can login, do it and look if you are logged in the next day, too)
    So there is no problem with the CookieManager() in java1.6, that is only providing "HTTP cookie management"
    (see CookieManager and CookiePolicy), while ListCookieHandler seems to be a more common approach.
    Edited by: penpen on Jul 6, 2008 4:41 AM

  • Convenient way to install Java3d API&Java1.4 jre at the same time?

    My Java3D program is embedded on Applet and I hope that anyone can run my program with only 1 installation(such that install Java1.4 jre and Java3D api at the same time...of course auto install all is best).Also,I have 2 link on my page..one is Java1.4 jre and other is Java3D 1.3 jdk,I hope my page have only 1 link and anyone can press once to install all..how can I do~~thank you~

    As stated in the Creative Suite CS5.5 EULA you are permitted to install ONE copy of Creative Suite  on your primary computer, and one additional copy on "a portable computer or a computer located at your home", provided this copy is not used at the same time as the primary installation. This is different from the idea that you can install it "on two computers" - you have to think of it as one copy being used in either of two locations, but never both. Installing two copies on desktop machines is not permitted unless one or both of them is in your own home.
    Creative Suite is sold and licensed as a single product (it has a unified serial number and the member applications cannot be transferred out of the Suite) so the rule on simultaneous use applies to any combination of the member applications. If your primary computer is running Photoshop, your home computer or laptop cannot run anything. This applies whether or not you're sitting at either machine (so leaving an office computer rendering out a video sequence overnight counts as 'in use').

  • Java1.1 work, java1.2 doesnt

    hi,
    i wrote a simple java-class that retrives the folder/document hierary of the ifs. that class runs fine with java1.1, but when starting with java1.2 i get this exception:
    Exception in thread "main" oracle.ifs.common.IfsException: IFS-21008: Login failure
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at org.omg.CORBA.UserException.<init>(UserException.java:34)
    at oracle.ifs.common.IfsException.<init>(IfsException.java:137)
    at oracle.ifs.common.IfsException.<init>(Compiled Code)
    at oracle.ifs.server.IfsCredentialManager.checkCredential(Compiled Code)
    at oracle.ifs.server.IfsCredentialManager.authenticate(IfsCredentialManager.java:227)
    at oracle.ifs.server.DirectoryService.authenticate(DirectoryService.java:503)
    at oracle.ifs.server.S_LibraryService.connect(S_LibraryService.java:1849)
    at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:522)
    at oracle.ifs.beans.LibraryService.connect(LibraryService.java:377)
    at com.pegas.guzsvany.test.ifs.login.Main.connect(Main.java:20)
    at com.pegas.guzsvany.test.ifs.folderlist.Main.<init>(Main.java:24)
    at com.pegas.guzsvany.test.ifs.folderlist.Main.main(Main.java:11)
    in both cases i first call the oracleenv-script and use the IFS_BASE_CLASSPATH.
    are there known problems with java1.2?
    the exact version (from java -version) is:
    Solaris VM (build Solaris_JDK_1.2.2_05, native threads, sunwjit)
    thank,
    alex

    iFS 1.0 does not work with JDK 1.2
    Use JDK 1.1.8 for best results.

  • Problem in getting object while shifting from java1.4 to java1.6!!

    hi all, i stored my object in file using serialization in java1.4. now i am shifting to java1.6 and when i am reteriving the object, i am getting the exception
    java.io.InvalidClassException:data.SessionDVO; local class imcompatible; stream classdesc serialVersionID= -78952647 .... , local class serialVersionID= 45628....
    This is the version id error. One solution is to define the class versionID in SessionDVO class which static and final, so cant be changed at runtime. but since i didnt define it earlier in SessionDVO class , so while reteriving the object , i am getting this error.
    Can anyone help me in this case???
    below is the code which im using for reteriving the object
                                            FileInputStream fis = new FileInputStream(filePath);
                                            ObjectInputStream in = new ObjectInputStream(fis);
                                            SessionDVO session = (SessionDVO)in.readObject();

    hi dear on windows when i am using Mac serialVersionID it gives me this error
    java.io.InvalidClassException: data.SessionDVO; local class incompatible: stream classdesc serialVersionUID = 4640646385536229406, local class serialVersionUID = -3687353918251388251
    private static final long serialVersionUID = 4640646385536229406L;
    when i change versionID to this versionID on windows it shows me error
        java.io.InvalidClassException: javax.swing.text.AbstractDocument; local class incompatible: stream classdesc       serialVersionUID = -116069779446114664, local class serialVersionUID = 6842927725919637215when i use versionId below one
    private static final long serialVersionUID = -116069779446114664L;
    then it shows me this error
    java.io.InvalidClassException: data.SessionDVO; local class incompatible: stream classdesc serialVersionUID = 4640646385536229406, local class serialVersionUID = -116069779446114664now i am confused which i should use here???

  • Problems with html "redrawing" in Java1.5

    Hi
    I have a dynamic html page containing javascript and an applet that is used for downloading files. The applet is only displayed as a progressbar for the file downloading.
    When I use Java1.4 the file download looks ok, but now that I have switched to Java1.5 on the client, only the progressbar is rendered/redrawn when I switch between application windows, and not the html page itself.
    Has anyone else encountered this problem and has found a solution or workaround for it?
    /Ingrid

    seems to be a browser bug

  • Compilation with java1.4 vs java1.3

    I have an application which running and compiling well with java1.3.
    We have installed the version java1.4 and the application isn't compiling now!!!
    in my directory src/ I have 2 files:
    1. toto.java [the main] (include "import titi;" and "import Pack.*;" and use class test)
    2. titi.java
    and in a internal package Pack/ I have the file
    test.java which include "import titi;"
    The command line javac *.java is OK under Java1.3.
    An It isn't OK with Java1.4
    in toto.java: class test is not found in Pack/test.java
    Thanks for answering.

    http://java.sun.com/j2se/1.4/compatibility.html#incompatibilities1.4
    Point 8, second bullet.

  • Xml parsers and tranformers for java1.3 version

    I was wondering if there is any package which provides DOM SAX parsing which should run with java1.3
    any links references will be fine
    TIA
    Zoha.

    I believe Xerces from Jakarta runs under JDK 1.3:
    http://xml.apache.org/xerces2-j/index.html
    MOD

  • How to setup java1.4 on linux platform

    i using redhat9.0, and i want to use java1.4, now, when i type java -version, that will show jdkgcj 0.2.3, then i download the java sdk 1.4 on java.sun.com, and i install according to the install notes, after installing complete, i type java -version also show jdkgcj0.2.3, is it to set enviroment viarable? How to set it? thanks

    How did you set PATH? What does this yield:
    type java

  • Java3D not working with java1.4

    My program worked fine with Java 1.3.1_03 running Java3D 1.2.1_03. Then I recently installed Java 1.4.2_01 with Java3D 1.3.1 OpenGL version
    j2sdk-1_4_2_01-windows-i586.exe
    java3d-1_3_1-windows-i586-opengl-sdk.exe
    I got these messages from my program everytime it gets mouse input or object transform changes.
    [java] wglMakeCurrent Failed: The handle is invalid.
    [java]
    [java] extensionStr == null
    [java] wglCreateContext Failed: The handle is invalid.
    So then I installed same old Java3D 1.2.1_03 into Java 1.4, same thing happening. I also tried the demo that it came with.
    Demos that gave same error:
    AWT_Interaction
    PickTest
    Morphing
    Demos that worked:
    ConicWorld
    HelloUniverse
    TickTockPicking
    It's definitly not my program. I tried installing same stuff on another machine, also running window 2000, same graphics driver, and everything works fine. The only difference is this one has NVidia GeForce4 Ti 4200, the other one (working one) has GeForce256. But my co-worker said he also has GeForce4 and was able to run the program with Java1.4, though I dont know which version exactly.
    Anyone seen similar problem before?

    that worked, i also didnt realize i had to uninstall the other version, thought they just override each other...
    thanks

  • Version for java1.2.2 with AES

    I have appication with java1.2.2. Now Ii want to use AES encryption in that Application. Which provider support AES encryption?
    Which version of JCE should I use to that?.
    Regards
    Prakash

    Thanks for replay
    Can anybody tell me is the Bouncy Castle Provider support AES 256 key with Version for java1.2.2 . ? if yes please which jar files will have to import.

  • Type casting to java1.4

    Hi,
    I developed a java program in java1.5. I have defined ArrayList<String[]> . Now i have to convert it to java1.4
    Can any one plz give pointers to solve this problem?
    Thanks

    Also you'll probably have to add type casts wherever items are retrieved from the List.

Maybe you are looking for

  • My photosmart B110 will not work with MAC OS 10.9.3

    Hello, let me start by saying I have a mac with os 10.9.3. and a photosmart B110. I got the low on all inks  I refilled black because that is mainly what I need. Got a error message wrong cartridge. Checked HP website tried  reset printer system. Aft

  • Adobe InDesign CS (original) crashes; corrupt file

    Help! I am a journalism adviser and the front page of our newspaper has randomly become corrupted. We use the old CS (it's all we can afford), and it's worked fine for three years until today. Below is the error code I get when trying to open the fil

  • Bug in Contacts

    For SOme reason since the unable to install apps has been fixed I now can't add contacts on my Pre.  I get the Error message. "There was an error saving the contact. Please try again. I press OK Then  the message comes up  This Contact could not be s

  • How to handle no_ data_found

    Hi, All, Could someone please tell me how to handle no_ data_found? In my function, when step1 has no row return from the SQL it need to go step2. here is the detail. Thanks a lot. CREATE OR REPLACE FUNCTION Get_RateALl( V_CBR_NO IN VARCHAR2) RETURN

  • HOW TO GET MICROSOFT WORD TO MY MAC PRO?

    HOW TO GET MICROSOFT WORD TO MY MAC PRO?