Closed Nao000 closed 1 year ago
https://go.dev/doc/database/change-data ここを参考にする
特に↓↓これは調べたい
Caution: Don’t use string formatting functions such as fmt.Sprintf to assemble an SQL statement! You could introduce an SQL injection risk. For more, see Avoiding SQL injection risk.
INSERT 出来た
curl -X POST http://localhost/registerdb で試した。
curl -X POST http://localhost/registerdb
INSERT が失敗したらサーバも落ちてしまうので落ち無いようにする
他言語で言うところの try catch をやりたい。 panic recovery みたいなのをやる。
トランザクションを開始して INSERT 実行したい
https://go.dev/doc/database/change-data ここを参考にする
特に↓↓これは調べたい