# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/kpcjdja
SQLite 系列 - 創建、附加和分離數據庫**
創建數據庫-----SQLite 的 sqlite3 命令被用來創建新的 SQLite 數據庫 \n。您不需要任何特殊的權限即可創建一個數據。我們需要在路徑D:\\\\myDatas\\\\SQLiteDB\\\\db下創建數據庫,數據庫路徑和名稱如下:D:\\\\myDatas\\\\SQLiteDB\\\\db\\\\sqlite02opdb.db在當前文件夾路徑下,輸入 cmd 回車,然後執行如下命令創建數據庫:D:\\\\myData ⌘ Read more