Forum Discussion

ashutosh01's avatar
ashutosh01
Contributor
2 years ago

I am putting query in double quotes but it is giving syntax error

Here if i put normal select query in double quotes it works fine, but if I put like this then it don't  ADOCommand.CommandText= " DO $$ DECLARE record_count INTEGER; BEGIN LOOP -- Perform your...
  • rraghvani's avatar
    2 years ago

    Template literals are literals delimited with backtick (`) characters

    var html = `
      <div>
        <span>Some HTML here</span>
      </div>
    `;