Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sqlite3.ProgrammingError: Error binding parameter 1: type '_FakeSqlVal' is not supported #156

Open
Pfizer-BradleyBare opened this issue Jul 15, 2024 · 1 comment

Comments

@Pfizer-BradleyBare
Copy link

Getting the error in the title when using sqlite3 with Django 4.1.6 and python 3.11. Is this library compatible with sqlite?

This is the model I made to test the library.

`MY_CHOICES2 = (
(1, "Item title 2.1"),
(2, "Item title 2.2"),
(3, "Item title 2.3"),
(4, "Item title 2.4"),
(5, "Item title 2.5"),
)

class Test(models.Model):
active_channels = MultiSelectField(
choices=MY_CHOICES2,
)`

@Pfizer-BradleyBare
Copy link
Author

Yeah I'm not sure it is sqlite3 related. I think parsing the selection is not working. I tried looking at the MultiSelectField model but I cannot figure out where the issue is.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant