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

Home -> Community -> Usenet -> comp.databases.theory -> Re: approaches for embedding a data language in a general purpose language

Re: approaches for embedding a data language in a general purpose language

From: Aloha Kakuikanu <aloha.kakuikanu_at_yahoo.com>
Date: 9 Oct 2006 16:13:36 -0700
Message-ID: <1160435616.292615.41010@m73g2000cwd.googlegroups.com>


Marshall wrote:
> Anyone have any opinions, pro or con, about embedded SQL?

OK, compare

#sql { INSERT

        INTO person
        VALUES ('999999999', 'Doug Barry');
     };

with

Statement stmt = conn.createStatement(); stmt.execute("INSERT

        INTO person
        VALUES ('999999999', 'Doug Barry')");

Do you see much difference? I don't. Received on Mon Oct 09 2006 - 18:13:36 CDT

Original text of this message

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