Insert Row Error

Issue #306 invalid
Former user created an issue

Error message after trying to insert row

Comments (2)

  1. phpLiteAdmin repo owner

    Please provide more info:

    1. What error message exactly?
    2. What's the CREATE TABLE statement of your table? (See table structure tab)

    The most likely reason for the error is that your insert would violate the constraints of your table, e.g.

    • you try inserting a value that is already present in this table and the column has a unique index, primary index or is the rowid column
    • you are trying to insert something into the rowid column which is not an integer
    • your insert violates a foreign key constraint
    • ...

    Please always provide the complete error message.

  2. Log in to comment