A table:
create table tb (ID varchar);
When execute select * from tb, I can refer the column row["ID"], while
using "select "ID" from tb", I must using row["\"ID\"'].

Why Sqlite return column name as "ID"?

Reply via email to