Difference betweeen JDBC and JRE

Hi,
What is basic difference between JDBC and JRE?
JDBC used to connect jdbc connections (Application users ) to Database  .
We use JRE to access forms only... is that correct ?
Please clarify
-Thanks

HI Hussein,
Thanks for the reply.
Can you please provide more information or Docs , how Autoconfig uses JDBC ?
HusseinSawwan wrote:
Vijay.Cherukuri wrote:
Hi,
What is basic difference between JDBC and JRE?
JDBC used to connect jdbc connections (Application users ) to Database  .
We use JRE to access forms only... is that correct ?
Please clarify
-Thanks
Correct. JDBC is used by AutoConfig as well.
Thanks,
Hussein

Similar Messages

  • What is the difference between jdk  and jre

    what is the difference between jdk and jre
    plzz tell me in detail

    It's an extremely important skill to learn how to search the web. Not only will it increase your research and development talents, it will also save you from asking questions that have already been answered numerous times before. By doing a little research before you ask a question, you'll show that you're willing to work and learn without needing to have your hand held the entire time; a quality that is seemingly rare but much appreciated by the volunteers who are willing to help you.
    If you've done the research, found nothing useful, and decide to post your question, it's a great idea to tell us that you've already searched (and what methodologies you used to do your research). That way, we don't refer you back to something you've already seen.
    To get you started, here is an excellent resource: The Java� Glossary

  • Whatz the difference between jdk and jre

    i would like to know the difference between jdk and jre.

    Yes JRE is Java Run Time Environment. The java programming language adds the portability by converting the source code to byte code version which can be interpreted by the JRE and gets converted to the platform specific executable ones. Thus for different platforms one has corresponding implementation of JRE. But JRE has to meet the specification JVM (Java Virtual Machine) Concept that serves as a link between the Java libraries and the platform specific implementation of JRE. Thus JVM helps in the abstraction of inner implementation from the programmers who make use of libraries for their programmes.
    The JDK(Java Developmental Tool kit) comes along with java libraries and JVM embedded in it. Apart from these it comes along with the utility tools for byte code compilation "javac", Executing the byte codes through java programmes through "java" and many more utilities found in the binary directory of java. Speaking practically JDK is essential for developers, which comes along with library packages to develop Software programmes. While JRE is minimal set of programmes which executes the java class files developed by the software developers.

  • Major Difference between JDK and JRE

    Hi Support,
    Major Difference between JDK and JRE
    can you please distinguish between these two ,
    Thanks

    860707 wrote:
    Hi Support,This isn't 'support' it's a forum.
    Major Difference between JDK and JREYes, there is.
    can you please distinguish between these two ,
    Here.
    db

  • Differences between jdk and jre

    can anybody explain the differences between jdk and jvm. and relation between jdk, jre and jvm.
    thanks

    Hi,
    JDK- Java Development Kit contains compiler and other appliction development tools. with this tool you can compile as well as run your application
    JRE-Java runtime Environment where Java applications are exceuted .You can only run your application here but you cant develop and compile.
    JVM-Java Virtual Machine Its interpretor which interprets and then executes you coded after it is compile ( to byte code) by Java Compiler.

  • Difference Between JDBC and SQLJ

    Can any one explain the difference in using JDBC and SQLJ with example codes_...

    Oracle documentation can
    http://download.oracle.com/docs/cd/B19306_01/java.102/b16018/overview.htm#i1006033

  • Difference betweeen     SPRO and NACE

    HI
      What  is the difference between  SPRO  and NACE
    what is the use of thse TCODES....  and when we go  for these TCODES..and what is the difference between each other
    thansk
    Babu

    hi
    good
    Output type is used to issue a output for a business object. The output issued could be in any format.
    It coule be a printout, Fax, email, ale and so on...
    Each Output type are triggered differently and at different time.
    No its not always you use 'NEU'. It depends on the requirment.
    For more read sap help on OUTPUT CONFIGURATION
    http://help.sap.com/saphelp_46c/helpdata/en/30/c6853488601e33e10000009b38f83b/frameset.htm
    reward point if helpful.
    thanks
    mrutyun^

  • Difference betweeen Express and discoverer

    How is oracle discoverer different from Oracle Express .

    There's a big difference between FCP and FCE.. which is right for you is dependent on what you're doing I think. FCP 2 actually has functionality that FCE doesn't have... like working in formats other than DV. But that said, many of the newer features of the app are included with the current version of FCE. like HDV editing, (no native though, you need FCP for that) and like more filters, (but FCP has even more) etc... In reality, FCE's learning curve is about the same as FCP's.. FCP just gives you more features, and of course, more applications because it's part of Studio...
    If you are a working pro, FCS 2 is the way to go.. if you are an enthusiast working in DV or HDV, and you don't need the pro features, and don't care about the extra applications in studio and don't care about recapturing, offline/online scenarios, RED support, HD support, professional color correction, higher quality MPEG encodes for DVD's etc.. FCE will serve you well.
    Jerry

  • Difference betweeen linux and windows

    Hi,
    I read the link http://docs.python.org/release/1.5.2p2/ext/dynamic-linking.html.
    How linux differ from  windows when database runs.
    How oracle library works with linux kernels?please explain anyone what is Shared object ,object files and etc
    Is it possible to read those files?
    Br,
    Raj

    The major difference IMO is the Process Architecture. On Linux/Unix you have each database process as a separate physical process image in the kernel. On Windows, there is a single physical process (oracle.exe) in the kernel, and database processes are threads. Both approaches have their pros and cons.
    Besides that, there is not that many differences. A DLL on Windows is a SO (Shared Object) library on Linux/Unix. Conceptually the exact same thing. Technically differs little in implementation.
    Memory? Same concepts. Even similar kernel calls for dealing with private and shared memory.
    The other difference that stands out is that Windows has a very specific Server Manager framework in which a server daemon/service process need to run. There are specific kernel calls that need to be made and callback that need to be supported.
    On Linux/Unix it is programatically much simpler to write a service. You need to change working dir to root file system (should not run a service on a file system that can be unmounted and remounted at any time). Change parent process to that of the kernel (initd) process. Install a signal handler to deal with kernel signals. Also easier to setup, use and maintain. (e.g. no oradim command needed)
    Of course there is a lot of differences between Linux/Unix and Windows besides these I've mentioned - but as far as Oracle db instances are concerned, these are the main differences (process architecture and service definition) that impacts Oracle.

  • What is the difference between JVM and JRE

    hello everyone,
    a funny but really confusing question is that how a virtual machine is different from a runtime environment.
    some may argue that RE contains the API classes and implementations etc. but i need some real picture of what is the actual difference and anything related to this topic.
    thanks,
    waiting for your responses :-)

    The Java Virtual Machine forms part of a large system, the Java Runtime Environment. Each operating system and CPU architecture requires a different JRE.
    The JRE comprises a set of base classes, which are an implementation of the base Java API, as well as a JVM.

  • What is the difference between JVM and JRE and JDK?

    Hi , I want to know what actually is JVM,JRE and JDK ? and the difference between them?

    They should at least try. When it comes to
    terminology, if they can find this site, they should
    be able to find google, wikipedia, etc. It's
    reasonable to expect them to try there first, and
    then, if they still have questions, post here,
    indicating what they looked at and how it fell short,
    what they're still confused about, etc.Perhaps this is a valid point.
    I believe physical JVM hardware has also been
    manufactured. I wonder what we'd call that? A JPM
    (Java Pysical Machine)?No. It is simply a hardware implementation of the abstract Java Virtual Machine.
    .class files are executed by software (in fact,the
    software that executes the .class files is calledthe
    JRE and is short for the Java
    Runtime Environment). The JavaRuntime
    Environment is a native program (i.e. it is run by
    hardware) which provides the ability to executejava
    bytecodes (.class files)That's the JVM.No it's not. The JVM is an abstract architecture.
    The JRE is the JVM plus native libraries plus core
    API Java classes.The JRE is an implementation of the JVM along with some additional facilities. The JVM may be used to describe concrete implementations in industry vernacular, but this is not a technically accurate usage of the term per the specification and is therefore incorrect.
    From the preface to the Java Virtual Machine Specification, Second Edition, viewable at http://java.sun.com/docs/books/jvms/second_edition/html/Preface.doc.html:
    "The Java virtual machine is an abstract machine."
    From Wikipedia (http://en.wikipedia.org/wiki/JVM):
    "A Java Virtual Machine (JVM) is a set of computer software programs and data structures which implements a specific virtual machine model."
    Perhaps this misconception is the source of the confusion. This is one reason why I answered deepakorsun rather than refer him to somewhere else: anywhere that would be reliable and/or completely accurate would be too dense to readily understand, and anywhere understood easily enough might not be completely accurate.
    >
    The Java Development Kit (JDK) just provides the
    facilities necessary to write programs that willrun
    on the Java Virtual Machine. It contains acompiler
    It also contains tools such as jar and javap, the API
    docs for the core API classes, the source code for
    the API classes, probably a few other things, and
    generally the JRE (though I'm not sure if that's
    officially a required part of the JDK).I never said it didn't contain jar, javap, javac, java, jdb, jconsole, or any of the other programs or resources shipped with jdk. I simply stated affirmatively something it did contain. As I implied before, technical comprehensiveness is exactly what makes resources such as the JVM specification almost unusable for answering questions like this. That is why I omitted such details in my description. And since we're being all technical here, the API documentation does not ship with the Java Development Kit (at least not as of JDK 5.0), it is a separate download. It is the core API source files that ship in a .zip file with the JDK.
    Don't get me wrong, I do understand that you have probably seen a lot more people come and go from these forums than I may ever understand and that you have helped more people than you can remember, and I don't mean to disrespect that. I understand that dealing with so many people over such a long period of time and hearing the same questions over and over again can probably start to wear on your patience, but I don't think the right approach is to treat anyone that tries to help them with utter contempt and sarcasm. That's not constructive or useful to anyone. I understand why you would be upset if somebody was purposely trying to be lazy, I probably would be too, but you have no real way of determining whether or not they are being lazy or just don't know something and don't know how to figure it out for themselves so they are asking a question. And if they are honestly just asking a question in good faith and looking up the answer on Wikipedia just did not occur to them (or they couldn't understand what it said), yet they somehow ended up on this site, they have done nothing wrong and there is no reason to get angry at them.
    Oh come on, that wasn't nice. Not everybody isable
    to answer their own questions. WTF are you talking about?!? Why waste the time to
    type something out when they can click on a link and
    find 1000 times more information than you can fit
    into one post? Either way - they're
    STILL going to have to read the
    information themselves...
    Ridiculous.So I suppose you've either read the Java Virtual Machine Specification, the Java Language Specification, and the Java Native Interface Specification in their entireties, or absolutely nothing about programming in Java. This is because, by your reasoning, these three books contain 1000 times more than anyone can fit on a tutorial, Wikipedia entry, mailing list, forum, blog, or anything else.
    Criticizing somebody who isn't doing something the exact way you think it should be done is often quite idiotic and non-constructive. I believe this is this case here. Please post something more useful, meaningful, and/or polite next time. And just for future reference, yelling at a beginner does not help them learn faster or better. It just makes them hate you.
    Oh come on, that wasn't nice. Not everybody isable
    to answer their own questions. Java terminologycan
    be confusing and difficult to understand in part
    because of all the acronyms used and all the name
    changes undergone by the various development kitsand
    platforms.Point taken. You have much more patience than
    I, but with lots of intensive therapy and proper
    adjustment of my medications, I may get better.Thank you for this post. A display of wisdom and patience. You single handedly caused me to reconsider participating in a flame war.

  • Difference between JVM and JRE

    Hi,
    can anyone tell me if there is a difference between a JVM and a JRE?
    I'm trying to use Excelsior JET to make windows executables from java classes. The documentation says that with JET you dont need the JVM but reading between the lines I think you do still need the Java JRE.
    Are these different or the same thing?
    Cheers,
    Jim

    JRE = JVM + classes and libs.

  • Difference between jdk and jre...

    Hi, I installed java (jdk1.6.0_03) and i got 2 folders in my pc with names jre1.6.0_03 and jdk1.6.0_03.
    I don't know what are those. And while installing Tomcat5.0 it take the default path for jre1.6.0_03 and worked properly.
    pls help me .......

    JRE = Java Runtime Environment.
    It's basically the implementation for your PC of the Java Virtual Machine (JVM) which is the software emulated processor that Java code runs on.
    JDK = Java Development Kit
    It's the JRE plus the compiler tools to allow you to write code.
    Old versions of Tomcat needed the JDK because JSPs get converted into Java Servlet source code which is compiled into class files and run on the JVM. Newer versions of Tomcat only need the JRE because Tomcat now has its own compiler (implemented in Java) built in.
    So since Tomcat's working, I don't think you have much to worry about :-)
    Edited by: dcminter on 03-Jun-2008 10:28

  • Difference betweeen valuated and unevaluated at MTO scenario

    Hi
    Can any one explain about valuated and unevaluated in MTO scenario.
    Settlement happened at production order level or Sales order level?
    Regards,
    RAM

    Make to order

  • In jdbc adapter what is the difference between insert and update insert

    in jdbc adapter what is the difference between insert and update insert
    Edited by: katru vijay on Mar 22, 2010 7:43 AM

    Please refer to this Link [Document Formats for the Receiver JDBC Adapter|http://help.sap.com/saphelp_nw04/Helpdata/EN/22/b4d13b633f7748b4d34f3191529946/frameset.htm]
    Hope this helps.
    Regards,
    Chandravadan

Maybe you are looking for

  • Problems with Initial steps for Mapping with Java in XI 3.0

    Hi, I am having problems with a simple java mapping in XI 3.0. I have created another test class in my PC to test it ,and it works. But when I use it in a example mapping it does not work. I think the reason is because It cannot find the classes used

  • How to configure Solaris that third-party software can use Netscape

    Hi, I don't know if this is Solaris configuration issue. I have Storage Foundation installed on Solaris 10 SPARC. And I am using the VEA GUI application to manage storage. Then I intentionally made some activities that the Error window appears with t

  • ALOT of my songs just disapeared!

    So i was using photoshop adn surfing the web when i opened itunes. it was going pretty slow and then this importing xml or something came up and i thought it was slowing everythign down so i clicked stop and exited everything i was doing. well when i

  • Problems with printing in CS6 64bit

    When we open a Design in Photoshop CS6 (64bit mode) the design is not printable. When you open the Printer properties an error message say that no Printer exists. When you create a new design, and open then your old design you can sometimes print it.

  • Can an intel iMac run OSX Tiger from an external hard drive?

    Hi can anyone please tell me if it is possible to run OSX Tiger from an external hard drive on an Intel iMac running OSX 10.5 Leopard or later? Or is it possible to partition the intel iMac's hard drive and add Tiger? At the moment I am running Tiger