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_at_m73g2000cwd.googlegroups.com>
Date: 9 Oct 2006 16:13:36 -0700
Message-ID: <1160435616.292615.41010_at_m73g2000cwd.googlegroups.com>
Marshall wrote:
> Anyone have any opinions, pro or con, about embedded SQL?
OK, compare
#sql { INSERT
with
Statement stmt = conn.createStatement();
stmt.execute("INSERT
Do you see much difference? I don't.
INTO person
VALUES ('999999999', 'Doug Barry');
};
INTO person
VALUES ('999999999', 'Doug Barry')");
