I have .sql files which has following contents :
#cat db.sql
create table server(name varchar(50),ipaddress varchar(15),id init)
create table client(name varchar(50),ipaddress varchar(15),id init)
How to import this file into sqlite ?So that these are created automatically? Thanks.