[sqlite] Passing all columns as arguments to a function?

2009-09-10 Thread Jean-Denis Muys
Hi, Is it possible to pass all columns of a table as arguments to a function in a implicit way? I tried this but it did not work: Create table studentMarks (French, English, Maths, Physics); Insert into studentMarks values (12, 9, 15, 14); Insert into studentMarks values (14, 13, 12, 8); Select

Re: [sqlite] Passing all columns as arguments to a function?

2009-09-10 Thread Igor Tandetnik
Jean-Denis Muys jdm...@kleegroup.com wrote: Is it possible to pass all columns of a table as arguments to a function in a implicit way? No. Igor Tandetnik ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Passing all columns as arguments to a function?

2009-09-10 Thread Robert Citek
On Thu, Sep 10, 2009 at 8:37 AM, Jean-Denis Muys jdm...@kleegroup.com wrote: Is it possible to pass all columns of a table as arguments to a function in a implicit way? As Igor wrote: no. I tried this but it did not work: Create table studentMarks (French, English, Maths, Physics); Insert