| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: approaches for embedding a data language in a general purpose language
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
![]() |
![]() |