Jarl Friis wrote:
> 
> How about just setting
> PRAGMA short_column_names = off
> PRAGMA full_column_names = on
> withing SQLColAttribute() and SQLColAttributes() and then, before
> returning from the function(s), setting it back to
> PRAGMA short_column_names = on
> PRAGMA full_column_names = off

I'm afraid this will not help. Both SQLColAttribute()
and SQLColAttributes() need the presence of a result
set with column and table names. This requires either
sqlite3_get_table() or sqlite3_prepare()/sqlite3_step()
to be already run before these functions.

Christian

Reply via email to