blob: 4025e12673ade16dc57ce742b5f25dde91336797 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
use anyhow::Result;
use log::{debug, info};
use rusqlite::{Connection, OpenFlags, NO_PARAMS};
use std::fmt;
use std::path::Path;
pub fn init_db<P: AsRef<Path> + fmt::Display>(p: P) -> Result<Connection> {
debug!("Looking for database at `{}`", p);
let conn = Connection::open_with_flags(
&p,
OpenFlags::SQLITE_OPEN_CREATE | OpenFlags::SQLITE_OPEN_READ_WRITE,
)?;
conn.execute(
"CREATE TABLE IF NOT EXISTS urls (
link TEXT PRIMARY KEY,
shortlink TEXT NOT NULL
)",
NO_PARAMS,
)?;
info!("SQLite3 database `{}` initialized", &p);
return Ok(conn);
}
|