Page 1 of 1
Max line length
Posted: Mon May 22, 2006 6:37 am
by Tranquil
Is it possible that the IDE does not support lines with more then 250 Characters?
If I try to modify an existing line (an SQL command string) it is cutted on the right at position 250.
Posted: Mon May 22, 2006 7:29 am
by Fangbeast
I know this may not be an answer to your question but...
For readability, I usually concatenate SQL query string so they don't go past the edge of my screen.
Query.s = "Select title,author,publisher,item,category,duedate,borrowedon"
Query.s + "from library, Where record = '" +record.s + "'"
Just found this to be more readable.
Posted: Mon May 22, 2006 10:22 am
by Flype
Maybe,
Did you try CodeCaddy and the Escape character ?
Code: Select all
QUERY.s = "_
SELECT title, author, publisher, item, _
FROM library _
WHERE record = '" + record + "'"
:roll:
Posted: Mon May 22, 2006 11:56 am
by freak
It is an issue with the Scintilla scrollbars.
Just put the cursor on the long line and hit the 'End' key, and you should be able to see the whole line.
Posted: Mon May 22, 2006 2:35 pm
by Michael Vogel
btw. the IDE seems to support longer lines than the compiler, I tried to assign a long string to a global variable (in my case it have been 10.000 ciphers of Pi), in the editor it seems to be ok, but the compiler did not like that...