标签: database sqlite filepath
SQLite中哪种数据类型最适合存储文件路径?
答案 0 :(得分:3)
sqlite3支持varchar(n),但不强制执行'n'。
sqlite> create table test (fullpath varchar(10) primary key); sqlite> insert into test values ('/usr/local/bin/sqlite3'); sqlite> select * from test; /usr/local/bin/sqlite3
这是frequently asked question。