Hello Dr. Hipp,

On 19/05/2005, at 16:08, D. Richard Hipp wrote:

On Thu, 2005-05-19 at 15:58 -0400, Tito Ciuro wrote:

Hello everyone,

I just downloaded SQLite 3.2.1 to replace 3.1.2. My wrapper stopped
working iimediately. After checking why, I realized that
'full_column_names' is not working. Looking through the archives
reveals other developers having the same issue.

Is it just me or is 'full_column_names' still broken?



Set short_column_names=off first, then full_column_names will work as it did before.

It's still not working for me.

Do you mean?:

PRAGMA short_column_names = OFF;
PRAGMA full_column_names = ON;
SELECT * FROM people;

-- OR --

PRAGMA short_column_names = OFF;
SELECT * FROM people;

What am I missing?

Thank you,

-- Tito

Reply via email to