当前位置: 代码迷 >> 其他数据库 >> sqlite查詢 欄位名稱問題,该怎么解决
  详细解决方案

sqlite查詢 欄位名稱問題,该怎么解决

热度:469   发布时间:2013-02-26 00:00:00.0
sqlite查詢 欄位名稱問題
select * from tableName1;
但是因為這張table沒有任何的record,所以沒有返回任何一筆資料
有什麼方法查詢這張table有什麼欄位嗎 
thx

------解决方案--------------------------------------------------------
.schema ?TABLE? Show the CREATE statements

SQL code
sqlite> .schema t1CREATE TABLE t1(id int,col1 char(10));sqlite>
------解决方案--------------------------------------------------------
"select sql from sqlite_master where name = 'table_name'"

然后sqlite3_exec

在callback的第三个参数返回的就是相关的DLL, parsing it
  相关解决方案