http://qs321.pair.com?node_id=1026776


in reply to Re^3: My doubts about using fetchall_arrayref
in thread My doubts about using fetchall_arrayref

This is pretty off-topic, but you can indeed use column labels with spaces or other special characters, as long as they are quoted.

So

select foo as 'this is the label' from bar
is perfectly valid, and DBD::Sybase will set the column name to 'this is the label'.

Michael

Replies are listed 'Best First'.
Re^5: My doubts about using fetchall_arrayref
by CountOrlok (Friar) on Apr 03, 2013 at 05:16 UTC
    Thanks. That is good to know.