> I was going to say, try using a SQL prepared statement.
> 
> For example, in Postgres you can write something like this:
> 
>   execute format( 'SELECT %I FROM table that has that columnName',
>    (SELECT columnName FROM columnNameTable WHERE condition how to
> select limit 1) );
> 
> But I don't know if SQLite can do that in SQL; you might have to use
> the host language.

  You have to use a host language.  Bind parameters in prepared
  statements also won't work, because you cannot bind an identifier.

   -j

-- 
Jay A. Kreibich < J A Y  @  K R E I B I.C H >

"Intelligence is like underwear: it is important that you have it,
 but showing it to the wrong people has the tendency to make them
 feel uncomfortable." -- Angela Johnson
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to