ISSUE04 :: Mysql .csv file import, Can't analyze file. Please try to change encoding type.

위 이슈와 관련된 사항은 2가지다.
1. utf-8 로 변경을 못했거나
2. mysql workbench 를 다운 그레이드 해야한다.
2번에 해당했던 문제였다.. ㅠ

추가적으로 다운그레이드 된 mysql workbench 에 접근하려면 password를 수정해야 했다.
'Toy-Project > ISSUE' 카테고리의 다른 글
ISSUE06 :: <Redux :: Actions must be plain objects. Use custom middleware for async actions.> (0) | 2020.04.14 |
---|---|
ISSUE05 :: git remote branch 삭제 안됄때 (0) | 2020.03.17 |
ISSUE03 :: Found a swap file by the name "~/.bashrc.swp" (0) | 2020.02.25 |
ISSUE03 :: Vue에서 v-for 과 v-if 를 같이 쓰면 발생하는 Issue, [You should not mix 'v-for' with 'v-if'] (0) | 2020.02.09 |
ISSUE02 :: Vue.js AXIOS 415 error (0) | 2020.02.05 |
댓글
이 글 공유하기
다른 글
-
ISSUE06 :: <Redux :: Actions must be plain objects. Use custom middleware for async actions.>
ISSUE06 :: <Redux :: Actions must be plain objects. Use custom middleware for async actions.>
2020.04.14redux 관련 이슈다. 커스텀 미들웨어 ….? 이슈를 해결하기 위해 import { createStore, applyMiddleware} from 'redux'; const logger = createLogger(); const store = createStore(rootReducer, applyMiddleware(logger, ReduxThunk)); 나의 경우는 비동기 통신을 처리하는 과정에서 발생한 이유였다. 그래서 redux-thunk 미들웨어를 사용하여 store 를 만들어줄때 생성하였습니다. -
ISSUE05 :: git remote branch 삭제 안됄때
ISSUE05 :: git remote branch 삭제 안됄때
2020.03.17git fetch --all --prune 이걸로 한번 동기화를 하고 push origin : 해야 했다. -
ISSUE03 :: Found a swap file by the name "~/.bashrc.swp"
ISSUE03 :: Found a swap file by the name "~/.bashrc.swp"
2020.02.25ls -la .bashrc.swp / rm .bashrc.swp. 하면 해결할 수 있다. 원인은 ~/.bashrc.swp 를 저장하지 않은 상태인것으로 짐작된다… 휴휴 -
ISSUE03 :: Vue에서 v-for 과 v-if 를 같이 쓰면 발생하는 Issue, [You should not mix 'v-for' with 'v-if']
ISSUE03 :: Vue에서 v-for 과 v-if 를 같이 쓰면 발생하는 Issue, [You should not mix 'v-for' with 'v-if']
2020.02.091 cs 를 사용하면 됩니다. vue.config.js 에서 eslintrc 에서 rule을 적용하는 방법은 1 2 3 4 5 6 7 8 module.exports = { lintOnSave : false, rules: { // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', "vue/no-use-v-if-with-v-for": "off" } } Colored by Color Scripter cs
댓글을 사용할 수 없습니다.