You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2023. It is now read-only.
Hi I'm using SQLite3UE4 plugin and I have a strange problem with SQLITE queries if they are more complex (longer). In addition, if the column name has more than 10 characters, for example, query SELECT colum10characters FROM table ORDER BY column10characters ASC does not work.
If I change column10characters name to column query SELECT column FROM table ORDER BY ASC column works correctly.
Alias do not help.
GOAL:
I need to use longer SELECT queries on SQLite composed of AND OR etc, and even if the column names 1 character after a certain length do not work properly and the project hangs. Does anyone have any idea why this is happening ?? Thanks!