Using MSSQL on AWS RDS
AWS RDS provides service for MSSQL and we can use SSMS locally to connect to remote MSSQL. If we want to use MSSQL for free, there are few steps to note.
失くすものさえない今が強くなるチャンスよ
AWS RDS provides service for MSSQL and we can use SSMS locally to connect to remote MSSQL. If we want to use MSSQL for free, there are few steps to note.
If we want to use Express DELETE to delete data from MSSQL, we can use Knex and Tedious to connect.
If we want to use Express PUT to edit data to MSSQL, we can use Knex and Tedious to connect.
If we want to use Express POST to add data to MSSQL, we can use Knex and Tedious to connect.
If we want to use Express GET to return data from MSSQL, we can use Knex and Tedious to connect.
We can use Knex to connect to MSSQL, jsut install Tedious library.
當更改 Schema 需要刪除原本 Table 並重新建立 Table 時,會顯示 Saving Changes is Not Permitted
錯誤訊息,並且無法繼續修改,該如何解決此問題呢 ?
可將 DELETE
Statement 直接傳入 Node-mssql,並且支援 Template String 實現 Parameter 避免湊字串而造成 SQL Injection。
可將 UPDATE
Statement 直接傳入 Node-mssql,並且支援 Template String 實現 Parameter 避免湊字串而造成 SQL Injection。
可將 INSERT
Statement 直接傳入 Node-mssql,並且支援 Template String 實現 Parameter 避免湊字串而造成 SQL Injection。
可將 SELECT
Statement 直接傳入 Node-mssql,並且支援 Template String 實現 Parameter 避免湊字串而造成 SQL Injection。
若主力在 macOS 開發 Vue + Node,但 Database 卻使用 MSSQL,則必須在 VM 設定 Windows + MSSQL。