Is "Data too long for column RequestBody" to do with ServiceStack MySQLConnector? #28
-
Beta Was this translation helpful? Give feedback.
Answered by
mythz
Aug 25, 2022
Replies: 2 comments
-
Although there is the possibility it is to do with something else behind the scenes in how ServiceStack handles these things, as it mentions Row 1, while crudevents already has many entries. |
Beta Was this translation helpful? Give feedback.
0 replies
-
It'll be because it exceeds MySql's VARCHAR string column, I've updated RequestBody to use a text column in this commit. If you change the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
CharlieArmstrongDev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It'll be because it exceeds MySql's VARCHAR string column, I've updated RequestBody to use a text column in this commit.
If you change the
CrudEvent.RequestBody
column to LONGTEXT it should resolve this issue.