Thanks for your reply. I have tried this using:
CREATE TABLE family (id TINYINT not null , name TEXT not null , forename TEXT not null , origin TEXT not null , company TEXT not null , address TEXT not null , city TEXT not null , date TEXT not null , source TEXT not null , PRIMARY KEY (id))
it works fine.
Then I insert the data. When I browse on PHPMyAdmin it shows only 1 record.
If I drop the id column it then shows 54 records, there are 106 on the file I loaded to it.
What's going on?