aboutsummaryrefslogtreecommitdiffstats
path: root/src/sqlite.rs
blob: 10dbb61b8bcc902344ab238dc36e875844346bea (plain)
1
2
3
4
5
6
7
8
9
use rusqlite;


/// Get the fundamental SQLite datatype for a given type name.
///
/// Use the SQLite rules for type affinity described in:
/// https://sqlite.org/datatype3.html#determination_of_column_affinity
pub fn affinity(type_name: &str) -> rusqlite::types::Type {
}