체리의 하루
[Go] "io/ioutil" is deprecated
Dev/Error 2023. 8. 29. 13:09

문제 발생 해결 방법 Go 1.16 부터 io/ioutil 해당 패키지에서 제공하던 모든 기능을 다른 패키지로 이동 쓰임을 하고 있는 것은 호환성을 위해 이전과 같이 동작하나 앞으로 코드를 짤 때는 다음과 같은 코드를 사용해 주면 좋음 Discard > io.Discard NopCloser > io.NopCloser ReadAll > io.ReadAll ReadDir > os.ReadDir ReadFile > os.ReadFile TempDir > os.MkdirTemp TempFile > os.CreateTemp WriteFile > os.WriteFile

[MySQL] 'check the manual that corresponds to your MariaDB server version for the right syntax' 해결 방법
Dev/Error 2023. 3. 29. 15:23

문제 발생 MySql.Data.MySqlClient.MySqlException: 'You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' ' at line 1' 해결 방법 SQL 문법 ERROR : 올바른 문법을 line 1에서 사용하라는 뜻 작은 따옴표를 제대로 닫지 않아서 발생한 문제 작은 따옴표와 큰 따옴표를 문법에 맞게 설정해 주니 해결됨 Tip near 부분을 명시해 주기에 near ' ' < 작은 따옴표 안에 있는 구문의 문장에서 오류가 났을 확률이 높음

[Visual Studio] '중단점이 현재 적중되지 않습니다' 해결 방법
Dev/Error 2023. 3. 29. 13:50

문제 발생 Visual Studio 2019 디버깅 중 다음과 같이 중단점이 적중되지 않던 문제가 발생 DBAssist로 중단점이 아예 들어가지 않음 해결 방법 : Release > Debug ↓

728x90