Re: Generating SQL
From: Otavio C. Decio (REMOVEodecio_at_earthlink.REMOVE.net)
Date: 11/18/04
- Next message: Otavio C. Decio: "Re: Generating SQL"
- Previous message: Andy Longshaw: "ANN: Call for Papers - EuroPLoP 2005 European patterns conference"
- In reply to: Mikito Harakiri: "Re: Generating SQL"
- Next in thread: Mikito Harakiri: "Re: Generating SQL"
- Reply: Mikito Harakiri: "Re: Generating SQL"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 18 Nov 2004 17:31:48 -0500
"Mikito Harakiri" <mikharakiri_nospaum@yahoo.com> wrote in message
news:8a529bb.0411181353.7855a736@posting.google.com...
> "Otavio C. Decio" <REMOVEodecio@earthlink.REMOVE.net> wrote in message
news:<R_Kdndy4suEVEAHcRVn-jw@giganews.com>...
>
> create table emp (
> empno integer,
> ename string
> )
>
> insert into emp (empno, ename)
> values (500, 'Jon Doe');
>
> select ename from emp
> where empno = 500
>
> alter table emp
> add sal integer
>
> Now the query and insert statement still work. The suggestion that
> application developers have to rewrite any sql statements whenever db
> designer adds a column is ridiculous.
Ok, wise guy. Why did you add a column if you're not going to use it?
Otavio
- Next message: Otavio C. Decio: "Re: Generating SQL"
- Previous message: Andy Longshaw: "ANN: Call for Papers - EuroPLoP 2005 European patterns conference"
- In reply to: Mikito Harakiri: "Re: Generating SQL"
- Next in thread: Mikito Harakiri: "Re: Generating SQL"
- Reply: Mikito Harakiri: "Re: Generating SQL"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|