Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to detect views w/ JDBC?

Re: How to detect views w/ JDBC?

From: Thomas Kellerer <NNGNVRDSJEBN_at_spammotel.com>
Date: Mon, 18 Apr 2005 15:47:33 +0200
Message-ID: <3chs3lF6oeq90U1@individual.net>


On 18.04.2005 15:32 Rauf Sarwar wrote:

> String s = new String("TABLE\nVIEW");
> String[] str = s.split("\n");

Any reason why you didn't use

String[] str = new String[] { "TABLE", "VIEW" };

Thomas Received on Mon Apr 18 2005 - 08:47:33 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US