[sqlite] Can we access table column using field and index instead of name?

2012-02-23 Thread Rick Guizawa
Hi, would it be possible to reference a column in a table using other than its name? For example, if I have : create table X ( a TEXT NOT NULL); would it be possible to access x.a with something similar as x.field[0]? Thank's. ___ sqlite-users mailing

Re: [sqlite] Can we access table column using field and index instead of name?

2012-02-23 Thread Simon Slavin
On 24 Feb 2012, at 1:45am, Rick Guizawa guizaw...@gmail.com wrote: Hi, would it be possible to reference a column in a table using other than its name? For example, if I have : create table X ( a TEXT NOT NULL); would it be possible to access x.a with something similar as x.field[0]?