1
如你所知calibre有一個叫做metadata.db
並提出了SQLite數據庫, 我想從所有書籍查詢與此列:如何從Calibre數據庫查詢?
bookId Title Date Size Rating Tags Publisher PublishedDate Author Cover
------ ----- ---- ---- ------ ---- --------- ------------- ------ -----
但是,該數據庫包含此表:
Books Table
-----------
Name
id
title
sort
timestamp
pubdate
series_index
author_sort
isbn
lccn
path
flags
uuid
has_cover
last_modified
Authors Table
-------------
Name
id
name
sort
link
Publishers Table
----------------
Name
id
name
sort
他們之間沒有任何關係,我怎麼才能得到我的查詢?
發現這個源代碼(蟒蛇),還有SQL的小片段可能幫助你:http://bazaar.launchpad.net/~kovid/calibre/trunk/view/head:/src/口徑/分貝/ tables.py – booyaa