Given the following code fragment...
set xname [db eval { select name from elements where e_mtid = $element }]
puts [format "Requested element ==> %s ==> %s" $element $xname]
The "business rules" are such that I know I'll only get one row
returned. I get output like so...
Requested element ==> abcdef ==> {FOO BAR}
What I need is...
Requested element ==> abcdef ==> FOO BAR
What do I need to do to get rid of the braces around the output name?
And no, that's not how the data looked in the tab-delimited file it was
imported from.
--
Walter Dnes <[email protected]>
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users