We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
example scripts.sql
CREATE TABLE dbo.Demo(Id INT, Name NVARCHAR(20)) GO INSERT INTO dbo.Demo VALUES(1, 'name 1') INSERT INTO dbo.Demo VALUES(2, 'name 2') GO PRINT 'dbo.Demo content' SELECT * FROM dbo.Demo
run script
$ SqlDatabase execute|create|upgrade -from=c:\Scripts\script.sql ...
Expectation is to see in the log output values, provided by "SELECT * FROM dbo.Demo"
dbo.Demo content // already supported 1, name 1 2, name 2
The text was updated successfully, but these errors were encountered:
#9: Handle dataselection in .sql scripts
7104d81
released in version 2.3.0
Sorry, something went wrong.
No branches or pull requests
example scripts.sql
run script
Expectation is to see in the log output values, provided by "SELECT * FROM dbo.Demo"
The text was updated successfully, but these errors were encountered: