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.
Max line length
Max line length
Tranquil
- Fangbeast
- PureBasic Protozoa
- Posts: 4789
- Joined: Fri Apr 25, 2003 3:08 pm
- Location: Not Sydney!!! (Bad water, no goats)
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.
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.
Amateur Radio/VK3HAF, (D-STAR/DMR and more), Arduino, ESP32, Coding, Crochet
Maybe,
Did you try CodeCaddy and the Escape character ?
:roll:
Did you try CodeCaddy and the Escape character ?
Code: Select all
QUERY.s = "_
SELECT title, author, publisher, item, _
FROM library _
WHERE record = '" + record + "'"
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
- Michael Vogel
- Addict
- Posts: 2807
- Joined: Thu Feb 09, 2006 11:27 pm
- Contact: