Skip to content
Advertisement

Convenient way to wrap long SQL statements in javascript

In python, one can use “”” to wrap long MySQL statements. For example,

JavaScript

However, if I try the same thing in javascript, there will be syntax error.

JavaScript

Is there some kind of javascript equivalent for python’s """string encapsulation? If no, what are some best practices for encapsulating a long MySQL string statement in javascript?

I am using node.js restify client.

Advertisement

Answer

Dealing with long strings in JavaScript:

JavaScript

Python’s triple quotes are great! Unfortunately, in JavaScript, you have only two options:

  • + based concatenation, as above
  • based continuation, as proposed by @Nina Scholz

Personally, I don’t like using for line continuation (in any language.) Using + doesn’t introduce unnecessary spaces in your string either.

Hope this helps.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement