-
-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
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
Support SQL Server #120
Support SQL Server #120
Conversation
@@ -220,6 +240,9 @@ Some of them can also be used for input schema file. | |||
- SQLite3 | |||
- Table: CREATE TABLE, DROP TABLE | |||
- View: CREATE VIEW, DROP VIEW | |||
- SQLServer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- SQLServer | |
- SQL Server |
is correct. ref. https://www.microsoft.com/ja-jp/sql-server/sql-server-downloads
@@ -438,13 +461,14 @@ To rename them, you would need to rename manually and use `--export` again. | |||
|
|||
## Development | |||
|
|||
You can use the following command to prepare MySQL and PostgreSQL to be used for running tests. | |||
You can use the following command to prepare MySQL, PostgreSQL and SQLServer to be used for running tests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use the following command to prepare MySQL, PostgreSQL and SQLServer to be used for running tests. | |
You can use the following command to prepare MySQL, PostgreSQL and SQL Server to be used for running tests. |
ditto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that I cannot push the suggestion to this branch, so I'll merge this and fix them. Thanks both!
Thanks for reviewing! |
👍 Published as v0.10.2. |
I want to use sqldef in SQL Server (MSSQL).
So I added support of MSSQL.
Add the syntax for mssql.
IDENTITY(N, M)
CLUSTERED
NONCLUSTERED
Support for the foloowing DDLs.
CREATE TABLE
,DROP TABLE
CREATE VIEW
,DROP VIEW
It does not yet support adding or altering columns or mssql specific data types like nvarchar.