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

Hi, thank you for creating this project! I wanted to ask if it is possible to connect it to a sqlite file, and if yes what I would have to...

Example: ![image](https://user-images.githubusercontent.com/113399675/195194258-70e44fed-3ae2-4388-8d89-d4c525a46f13.png) Thanks for publishing this!

When trying to type ```sql "ALTER TABLE table_name ADD COLUMN column_name datatype" ``` the extension does **not** highlight the SQL string ![image](https://user-images.githubusercontent.com/54633619/194710493-6abf0f88-9848-4c28-9af2-800e64042a6b.png)

- Issue Type: `Performance` - Extension Name: `inline-sql-syntax` - Extension Version: `2.15.0` - OS Version: `Windows_NT x64 10.0.19044` - VS Code version: `1.71.0` :warning: Make sure to **attach** this file...

- Issue Type: `Performance` - Extension Name: `inline-sql-syntax` - Extension Version: `2.15.0` - OS Version: `Windows_NT x64 10.0.22621` - VS Code version: `1.70.1` :warning: Make sure to **attach** this file...

It's impossible to parse [Python f-strings](https://realpython.com/python-f-strings/#python-f-strings-the-pesky-details) for the moment: ✅ ![Capture d’écran 2022-06-23 à 09 42 43](https://user-images.githubusercontent.com/9333686/175244350-c8ee607a-0096-42bb-869e-42bd84d8d8b7.png) ❌ ![Capture d’écran 2022-06-23 à 09 43 15](https://user-images.githubusercontent.com/9333686/175244378-b01927f1-ff00-4a64-98ca-0da00ca2f1b6.png) It would be very practical...

Example: ```py query = """ SELECT * FROM book; SELECT id FROM user; """ ``` Two queries should be highlighted separately (starting token is `SELECT `, ending is semicolon (`;`)....

feat

Like [yaml-string-sql](https://github.com/huisben/yaml-string-sql), purpose possibility to parse SQL in YAML. Example: _Single request_ ```yaml data: | --sql SELECT * FROM test; ``` _Multiple requests_ ```yaml data: | --sql-start SELECT * FROM...

Ideally text mate should be leveraged to extract document ranges where there are strings analogous to how neovim/treesitter extensions work. Possibly with this https://github.com/Microsoft/vscode-textmate

feat