SQLite Forum

Getting no such column error for values to be inserted
Login
I assume you want to insert a literal.

In SQL, string literals have to be quoted with single quotes.

```sql
INSERT INTO testTable VALUES ('lol');
```

~~~
-- 
Regards,
Kees Nuyt
~~~