The error message that you are getting is from SQL Server, not DevForce, SQL Server has a limitation of 2100 parameters that it will accept in a SQL statement. There are other limitations as well. For example, a SQL statement may not contain more than 8044 characters.
To handle very long queries, you will need to break the large query into multiple smaller queries.