Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.databases > #228 > unrolled thread
| Started by | "Lew" <lew@THRWHITE.remove-dii-this> |
|---|---|
| First post | 2011-04-27 15:22 +0000 |
| Last post | 2011-04-27 15:22 +0000 |
| Articles | 7 — 4 participants |
Back to article view | Back to comp.lang.java.databases
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: java study books "Lew" <lew@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
Re: java study books "=?ISO-8859-1?Q?Arne_Vajh=" <=?iso-8859-1?q?arne_vajh=@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
Re: java study books "Lew" <lew@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
Re: java study books "=?ISO-8859-1?Q?Arne_Vajh=" <=?iso-8859-1?q?arne_vajh=@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
Re: java study books "RedGrittyBrick" <redgrittybrick@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
Re: java study books "Lew" <lew@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
Re: java study books "=?UTF-8?B?QXJuZSBWYWpow7h" <=?utf-8?b?qxjuzsbwywpow7h@THRWHITE.remove-dii-this> - 2011-04-27 15:22 +0000
| From | "Lew" <lew@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Subject | Re: java study books |
| Message-ID | <7f1cd33b-23ab-4eda-84cd-c45deaffef2e@d45g2000hsc.googlegroups.com> |
To: comp.lang.java.databases On Sep 1, 9:56=A0am, 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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [next] | [standalone]
| From | "=?ISO-8859-1?Q?Arne_Vajh=" <=?iso-8859-1?q?arne_vajh=@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Message-ID | <48bf08c4$0$90270$14726298@news.sunsite.dk> |
| In reply to | #228 |
To: comp.lang.java.databases 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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [next] | [standalone]
| From | "Lew" <lew@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Message-ID | <ba948bee-6d0e-40b2-802c-3ca177e989bc@o40g2000prn.googlegroups.com> |
| In reply to | #229 |
To: comp.lang.java.databases On Sep 3, 5:59=A0pm, Arne Vajh=F8j <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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [next] | [standalone]
| From | "=?ISO-8859-1?Q?Arne_Vajh=" <=?iso-8859-1?q?arne_vajh=@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Message-ID | <48c08f44$0$90270$14726298@news.sunsite.dk> |
| In reply to | #230 |
To: comp.lang.java.databases Lew wrote: > On Sep 3, 5:59 pm, Arne Vajhoj <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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [next] | [standalone]
| From | "RedGrittyBrick" <redgrittybrick@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Message-ID | <48c0f508$0$2511$da0feed9@news.zen.co.uk> |
| In reply to | #231 |
To: comp.lang.java.databases Arne Vajhoj wrote: > Lew wrote: >> On Sep 3, 5:59 pm, Arne Vajhoj <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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [next] | [standalone]
| From | "Lew" <lew@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Message-ID | <7-CdnfUB0czMBV_VnZ2dnUVZ_q6dnZ2d@comcast.com> |
| In reply to | #232 |
To: comp.lang.java.databases 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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [next] | [standalone]
| From | "=?UTF-8?B?QXJuZSBWYWpow7h" <=?utf-8?b?qxjuzsbwywpow7h@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:22 +0000 |
| Message-ID | <48c2a871$0$90276$14726298@news.sunsite.dk> |
| In reply to | #235 |
To: comp.lang.java.databases 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 --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.java.databases
csiph-web