Advertisement
pampa_rider

SQLCMD Sublimetext Config

Feb 14th, 2021
1,310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.36 KB | None | 0 0
  1. //file config to execute sql_server query for sublime text.
  2. //only working with sql_server acount, not with win auth
  3. //Tools -> Build System -> New  Build System
  4. {
  5. "cmd": ["sqlcmd", "-S", "localhost",
  6. "-U", "MYUSERNAME", "-P", "MYPASS",
  7. "-i", "$file"],
  8. "word_wrap": "false"
  9. }
  10.  
  11. //Save as SQLCMD.sublime-buiid
  12. //Write the code and press Ctrl+B to run the query.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement