<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Sqllit on 知识铺的博客</title>
    <link>https://index.zshipu.com/geek/tags/sqllit/</link>
    <description>Recent content in Sqllit on 知识铺的博客</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Mon, 27 Sep 2021 13:03:10 +0800</lastBuildDate>
    <atom:link href="https://index.zshipu.com/geek/tags/sqllit/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>关键词库-本地sqllit存储</title>
      <link>https://index.zshipu.com/geek/post/crawler/%E5%85%B3%E9%94%AE%E8%AF%8D%E5%BA%93-%E6%9C%AC%E5%9C%B0sqllite%E5%AD%98%E5%82%A8/</link>
      <pubDate>Mon, 27 Sep 2021 13:03:10 +0800</pubDate>
      <guid>https://index.zshipu.com/geek/post/crawler/%E5%85%B3%E9%94%AE%E8%AF%8D%E5%BA%93-%E6%9C%AC%E5%9C%B0sqllite%E5%AD%98%E5%82%A8/</guid>
      <description>本地存储 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 package db import ( &amp;#34;database/sql&amp;#34; &amp;#34;fmt&amp;#34; _ &amp;#34;github.com/mattn/go-sqlite3&amp;#34; &amp;#34;log&amp;#34; &amp;#34;os&amp;#34; ) var db *sql.DB var err error func init() { if isExist(&amp;#34;./keybase.db&amp;#34;) { db, err = sql.Open(&amp;#34;sqlite3&amp;#34;, &amp;#34;./keybase.db&amp;#34;) if err != nil { log.Fatal(err) } }else{ db, err = sql.Open(&amp;#34;sqlite3&amp;#34;, &amp;#34;./keybase.db&amp;#34;) if err != nil { log.Fatal(err) } sqlStmt :=</description>
    </item>
  </channel>
</rss>
