1】Navicat for SQLite ,直接導入,會出現好多問題,即使導入成功,最后一個字經常會是亂碼,這方法放棄
2】編程轉換,JSON文本文件中有好多偏僻字,Delphi 里的UTF8toAnsi函數往往不成功,這方法放棄/因為Delphi自帶的轉換函數遇到其無法識別的字符串就返回空

function DecodeUtf8Str(const S: UTF8String): WideString; var lenSrc, lenDst : Integer; begin lenSrc := Length(S); if(lenSrc=0)then Exit; lenDst := MultiByteToWideChar(CP_UTF8, 0, Pointer(S), lenSrc, nil, 0); SetLength(Result, lenDst); MultiByteToWideChar(CP_UTF8, 0, Pointer(S), lenSrc, Pointer(Result), lenDst); end;
3】JSON文本文件在線轉換成CSV文件,分隔符為$,然后將結果拷貝到Excel里,再將Excel文件導入到Navicat for SQLite,完美!

UPDATE ciauthor set name='作者介紹:'||name insert into atb (id,name,info) select ciauthor.value+64051,ciauthor.name,ciauthor.long_desc from ciauthor insert into atb (id,name,info) select ci.value+65641,ci.rhythmic||'-'||ci.author,ci.content from ci insert into atb (id,name,info) select 86691+ROWid, aa.title||'-'||aa.author,aa.paragraphs from aa insert into atb (id,name,info) select 97748+ROWid, '幽夢影-張潮'||ROWid, aa.content||'---'||aa.comment from aa --VACUUM insert into atb (id,name,info) select 98415+ rowID, aax.title||'--'||aax.author ,aax.notes||'--'||aax.paragraphs from aax --insert into atb (id,name,info) select 99513+ROWid , Sheet1.title||'--'||Sheet1.author,Sheet1.paragraphs from Sheet1