Browse Source

Grammar fixes

pull/52/head
Jure Šorn 4 years ago
parent
commit
eed41724f4
2 changed files with 2 additions and 2 deletions
  1. 2
      README.md
  2. 2
      index.html

2
README.md

@ -1820,7 +1820,7 @@ def write_to_csv_file(filename, rows):
SQLite
------
**Server-less database engine that stores each database into separate file.**
**Server-less database engine that stores each database into a separate file.**
### Connect
**Opens a connection to the database file. Creates a new file if path doesn't exist.**

2
index.html

@ -1628,7 +1628,7 @@ CompletedProcess(args=[<span class="hljs-string">'bc'</span>, <span class="hljs-
writer.writerows(rows)
</code></pre></div>
<div><h2 id="sqlite"><a href="#sqlite" name="sqlite">#</a>SQLite</h2><p><strong>Server-less database engine that stores each database into separate file.</strong></p><div><h3 id="connect">Connect</h3><p><strong>Opens a connection to the database file. Creates a new file if path doesn't exist.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">import</span> sqlite3
<div><h2 id="sqlite"><a href="#sqlite" name="sqlite">#</a>SQLite</h2><p><strong>Server-less database engine that stores each database into a separate file.</strong></p><div><h3 id="connect">Connect</h3><p><strong>Opens a connection to the database file. Creates a new file if path doesn't exist.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">import</span> sqlite3
db = sqlite3.connect(<span class="hljs-string">'&lt;path&gt;'</span>) <span class="hljs-comment"># Also ':memory:'.</span>
...
db.close()

Loading…
Cancel
Save