On 16 Mar 2016, at 9:42pm, Daniel Telvock <dtelvock at investigativepost.org>
wrote:
> SQLiteManager: INSERT INTO "main"."WELLS" VALUES ("Adams, E.H. et
> al",'Schuyler','Hector','3.11E+13','Collins 1','UM','Unknown Not
> Found','DW','Dry Wildcat','8') [ UNIQUE constraint failed:
> WELLS.api_well_number ]
The error part of that is ...
UNIQUE constraint failed: WELLS.api_well_number
I don't know which of the values in the above command is the api_well_number,
but the "WELLS" table already has a row with that value for api_well_number.
So SQLiteManager is obeying the UNIQUE constraint and refusing to insert
another row with the same value.
Simon.