inline_sql_syntax icon indicating copy to clipboard operation
inline_sql_syntax copied to clipboard

Highlight and lint inline SQL strings.

Results 49 inline_sql_syntax issues
Sort by recently updated
recently updated
newest added

Currently, the extension automatically detects strings starting with certain words as sql syntax but this wouldn't work if the string first starts with tabs, spaces, and line breaks and then...

Added support multiline strings in Dart.

I can't get the extension to highlight SQL code inside multiline strings delimited with single quotes in Python files:

Something like : ```MYSQL SELECT series_id, GROUP_CONCAT(auth_name SEPARATOR '; ') AS auths FROM Authors NATURAL JOIN `Series-Authors` GROUP BY series_id ``` will be considered an "Unmatched parentheses" error with red...

Hi, Team, Currently inline SQL helps me a lot on writing codes with SQLs. Recently I find that in VSCode, a pure SQL script supports [code folding](https://en.wikipedia.org/wiki/Code_folding) for a long...

The -- in the referenced line is detected as the start of an SQL comment inside a golang annotation string which effectively swallows the closing ". This breaks the golang...

![grafik](https://user-images.githubusercontent.com/46620049/206719343-4551248a-609f-4c5f-8a34-f52ac68f2b4e.png) ![grafik](https://user-images.githubusercontent.com/46620049/206719399-8104a0c0-71ef-49d7-a129-53e8b68dfe23.png) When using single quotes syntax highlighting doesn’t work for me. It would be great if that would be supported.

I noticed that that the extension is still at v2.10.3. Can this be updated? It might also help if this process is automated via GitHub actions. https://github.com/eclipse/openvsx/wiki/Publishing-Extensions#github-action

With the MySQL driver, one must explicitly specify the database name in queries, eg. `SELECT name FROM mydatabase.customer` where 'mydatabase' is the name of the database. This is really annoying...

Hi, Team, Thanks for your great extension, it helps me a lot😊. I hope to know whether it is possible to support heredoc SQLs in bash shell script. Heredoc is...