I have values being cut off and would like to display the full values.
Sqlite3 -column -header locations.dbs \" select n.namelist, f.state, t.state from name
you could just use column (the unix command) like this:
sqlite3 -list -separator "|" -header db.dbs "Select ...." | column -t -s "|"
-list and -separator can be omitted, as they are defaults
-list
-separator