On Mon, May 3, 2010 at 2:14 AM, yogibabu <madra...@interia.pl> wrote:
>
> like this: SELECT --idcolumn-- FROM `table`


what is the name of the column? Is it '--idcolumn--'? Are the leading
and trailing '--' part of the name? Remember that leading '--' is used
as SQL comments. If that is indeed the name, try

SELECT "--idcolumn--" FROM table

note --idcolumn-- in double quotes, which enable you to use special
characters and words in your object/entity names.


-- 
Puneet Kishor
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to