Re: java study books

This is a discussion on Re: java study books within the JDBC JAVA forums in Framework and Interface Programming category; On Sep 1, 9:56*am, bujji <buddiinl...@gmail.com> wrote: > What is Byte Code [sic]? That's "byte code" or "bytecode". It is the assembler language of Java, an intermediate computer language into which Java source code is compiled, and from which machine code is compiled at run time. It is similar in concept to Pascal "p-code". > Why oracle Type 4 driver is named as oracle thin Because Oracle wants us to realize that it uses less resources than their other drivers. > What is the difference between final, finally "final" is a modifier for members, "finally" is a control structure element. ...

Go Back   Application Development Forum > Framework and Interface Programming > JDBC JAVA

Object Mix

Register FAQ Calendar Search Today's Posts Mark Forums Read
  #1  
Old 09-03-2008, 02:42 PM
Lew
Guest
 
Default Re: java study books

On Sep 1, 9:56*am, bujji <buddiinl...@gmail.com> wrote:
> What is Byte Code [sic]?


That's "byte code" or "bytecode". It is the assembler language of
Java, an intermediate computer language into which Java source code is
compiled, and from which machine code is compiled at run time. It is
similar in concept to Pascal "p-code".

> Why oracle Type 4 driver is named as oracle thin


Because Oracle wants us to realize that it uses less resources than
their other drivers.

> What is the difference between final, finally


"final" is a modifier for members, "finally" is a control structure
element.

> What is the Java API?


The Java application programming interface, or "API", is the set of
standard library classes provided with an implementation of Java.

> Is sizeof a keyword in java?


No.

> What is a native method?


A method compiled to the native platform, and not to the JVM.

> In System.out.println(), what is System, out and p..


'System' is a class comprising utility methods with which a Java
program can interact with its host platform. 'out' is a static member
of 'System', a 'PrintStream' that writes to the platform stdout
stream. 'println()' (assuming that what you meant) is a 'PrintStream'
method to emit characters to the stream.

HTH.

--
Lew
Reply With Quote
  #2  
Old 09-03-2008, 05:59 PM
Arne Vajhøj
Guest
 
Default Re: java study books

Lew wrote:
> On Sep 1, 9:56 am, bujji <buddiinl...@gmail.com> wrote:
>> Why oracle Type 4 driver is named as oracle thin

>
> Because Oracle wants us to realize that it uses less resources than
> their other drivers.


I don't think the "thin" is about resources - it is about what need to
be installed locally. The thin driver does not require the Oracle client
software to be installed. Just the jar file and actually not even that
because it can be downloaded by a classloader.

> ...


I agree with all the rest of Lew's good explanations.

Arne
Reply With Quote
  #3  
Old 09-04-2008, 11:34 AM
Lew
Guest
 
Default Re: java study books

On Sep 3, 5:59*pm, Arne Vajhøj <a...@vajhoej.dk> wrote:
> Lew wrote:
> > On Sep 1, 9:56 am, bujji <buddiinl...@gmail.com> wrote:
> >> Why oracle Type 4 driver is named as oracle thin

>
> > Because Oracle wants us to realize that it uses less resources than
> > their other drivers.

>
> I don't think the "thin" is about resources - it is about what need to
> be installed locally. The thin driver does not require the Oracle client
> software to be installed. Just the jar file and actually not even that
> because it can be downloaded by a classloader.


I see that client software as the resource not needed by the thin
driver.

--
Lew
Reply With Quote
  #4  
Old 09-04-2008, 09:45 PM
Arne Vajhøj
Guest
 
Default Re: java study books

Lew wrote:
> On Sep 3, 5:59 pm, Arne Vajhøj <a...@vajhoej.dk> wrote:
>> Lew wrote:
>>> On Sep 1, 9:56 am, bujji <buddiinl...@gmail.com> wrote:
>>>> Why oracle Type 4 driver is named as oracle thin
>>> Because Oracle wants us to realize that it uses less resources than
>>> their other drivers.

>> I don't think the "thin" is about resources - it is about what need to
>> be installed locally. The thin driver does not require the Oracle client
>> software to be installed. Just the jar file and actually not even that
>> because it can be downloaded by a classloader.

>
> I see that client software as the resource not needed by the thin
> driver.


Ah. I read "uses less resources" as "uses less CPU and/or RAM" not as
"uses less other software".

Arne
Reply With Quote
  #5  
Old 09-05-2008, 04:59 AM
RedGrittyBrick
Guest
 
Default Re: java study books


Arne Vajhøj wrote:
> Lew wrote:
>> On Sep 3, 5:59 pm, Arne Vajhøj <a...@vajhoej.dk> wrote:
>>> Lew wrote:
>>>> On Sep 1, 9:56 am, bujji <buddiinl...@gmail.com> wrote:
>>>>> Why oracle Type 4 driver is named as oracle thin
>>>> Because Oracle wants us to realize that it uses less resources than
>>>> their other drivers.
>>> I don't think the "thin" is about resources - it is about what need to
>>> be installed locally. The thin driver does not require the Oracle client
>>> software to be installed. Just the jar file and actually not even that
>>> because it can be downloaded by a classloader.

>>
>> I see that client software as the resource not needed by the thin
>> driver.

>
> Ah. I read "uses less resources" as "uses less CPU and/or RAM" not as
> "uses less other software".
>


I did too, since the distinction between "fewer" and "less" then
becaomes relevant.

--
RGB
Reply With Quote
  #6  
Old 09-06-2008, 10:48 AM
Lew
Guest
 
Default Re: java study books

RedGrittyBrick wrote:
>
> Arne Vajhøj wrote:
>> Lew wrote:
>>> On Sep 3, 5:59 pm, Arne Vajhøj <a...@vajhoej.dk> wrote:
>>>> Lew wrote:
>>>>> On Sep 1, 9:56 am, bujji <buddiinl...@gmail.com> wrote:
>>>>>> Why oracle Type 4 driver is named as oracle thin
>>>>> Because Oracle wants us to realize that it uses less resources than
>>>>> their other drivers.
>>>> I don't think the "thin" is about resources - it is about what need to
>>>> be installed locally. The thin driver does not require the Oracle
>>>> client
>>>> software to be installed. Just the jar file and actually not even that
>>>> because it can be downloaded by a classloader.
>>>
>>> I see that client software as the resource not needed by the thin
>>> driver.

>>
>> Ah. I read "uses less resources" as "uses less CPU and/or RAM" not as
>> "uses less other software".
>>

>
> I did too, since the distinction between "fewer" and "less" then
> becaomes relevant.


If there is more software running, then more CPU and RAM is needed. Ergo,
removing the extra driver means that the JDBC layer uses less resources. Q.E.D.

--
Lew
Reply With Quote
  #7  
Old 09-06-2008, 11:57 AM
Arne Vajhøj
Guest
 
Default Re: java study books

Lew wrote:
> RedGrittyBrick wrote:
>>
>> Arne Vajhøj wrote:
>>> Lew wrote:
>>>> On Sep 3, 5:59 pm, Arne Vajhøj <a...@vajhoej.dk> wrote:
>>>>> Lew wrote:
>>>>>> On Sep 1, 9:56 am, bujji <buddiinl...@gmail.com> wrote:
>>>>>>> Why oracle Type 4 driver is named as oracle thin
>>>>>> Because Oracle wants us to realize that it uses less resources than
>>>>>> their other drivers.
>>>>> I don't think the "thin" is about resources - it is about what need to
>>>>> be installed locally. The thin driver does not require the Oracle
>>>>> client
>>>>> software to be installed. Just the jar file and actually not even that
>>>>> because it can be downloaded by a classloader.
>>>>
>>>> I see that client software as the resource not needed by the thin
>>>> driver.
>>>
>>> Ah. I read "uses less resources" as "uses less CPU and/or RAM" not as
>>> "uses less other software".

>>
>> I did too, since the distinction between "fewer" and "less" then
>> becaomes relevant.

>
> If there is more software running, then more CPU and RAM is needed.
> Ergo, removing the extra driver means that the JDBC layer uses less
> resources. Q.E.D.


Nonsense.

There is no guarantee that:

ressource usage A + ressource usage B > ressource usage C

Arne
Reply With Quote
Reply


Thread Tools
Display Modes


All times are GMT -5. The time now is 11:56 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vB Ad Management by =RedTyger=

In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.