Microsoft.ACE.OLEDB.12.0 공급자는 로컬 컴퓨터에 등록할 수 없습니다.

라는 오류 발생시


AccessDatabaseEngine_X64.exe

AccessDatabaseEngine.exe 를 둘다 설치해준다.


32비트 64비트 둘다 설치하려고 하면

이런 알림창이 뜨는데 이럴땐 커맨드로 실행해준다.


AccessDatabaseEngine.exe /passive

AccessDatabaseEngine_X64.exe /passive



'C#' 카테고리의 다른 글

[C#]텍스트 박스 벨레데이션  (0) 2019.07.24
Console 프로그램 자동 종료 방법  (0) 2019.03.19
[C#]FolderBrowserDialog 폴더 검색  (0) 2019.02.22


//FolderBrowserDialog  객체생성

FolderBrowserDialog dialog = new FolderBrowserDialog();


//폴더 브라우저 띄우기

dialog.ShowDialog(); 


//폴더 브라우저에서 선택한 파일경로 가져오기

string select_path = dialog.SelectedPath;  

이클립스의 디버깅 콘솔라인수를 늘리는 방법입니다.


"Window -> Preferences -> Run/Debug -> Console"




기본값은 80000 이며 값에 따리 출력 라인수가 변합니다.


'eclips tip?' 카테고리의 다른 글

eclips theme 이클립스 테마 바꾸기  (0) 2018.01.07


 MySQL의 5.7 ZIP 아카이브 

여기에서 : https://dev.mysql.com/downloads/mysql/

가입이나 로그인 필요없이 그냥 다운받기 누르시면 됩니다


압축을 해제 한 다음 거기에서 mysqldump.exe 파일을 사용합니다.


MySQL Workbench를 사용한다면, edit  -> preferences -> administration (왼쪽 창에서) 로 이동하여 다운로드 한 mysqldump 도구에 대한 경로를 설정해야합니다 .





원문 출처

https://serverfault.com/questions/912162/mysqldump-throws-unknown-table-column-statistics-in-information-schema-1109

ctrl + / 가 맞지만 마우스키보드의 / 입니다 ?! 

주석과 주석해제 모두 ctrl + /(마우스 키보드) 입니다.





주석 처리된 모습입니다



각 서브쿼리마다 alias 를 달지 않아 생기는 에러입니다.



[에러]


select * from (select * from table);


 


[수정]


select * from (select * from table) t ;



'DB' 카테고리의 다른 글

[mysql] 게시판 조회수 업데이트 쿼리  (0) 2019.05.28
[MySql] mysql mybatis 페이지네이션 쿼리  (0) 2019.05.21
[MySql] mysql 문자열 합치기  (0) 2019.05.21
[MySql] mysql 주석 단축키  (0) 2019.01.23
mysql,maria DB 널처리 null  (0) 2018.11.24




하이차트 천단위 , 구분하기


우선 Highcharts.setOptions를 차트를 그리기 전에 설정하여 lang : thousandsSep: ',' lang 설정을 해준다.


Highcharts.setOptions({

lang: {

thousandsSep: ','

}

});

Highcharts.chart(container,

        yAxis:[ {

    gridLineWidth : 0,

    max: yAxisMax,

            startOnTick: false,

            endOnTick: false,

            tickInterval: 100,

labels : {

format: '{value:,.0f}',

},

opposite : true

} ]


이후 Y축에서 라벨에 포멧을 설정한다. format: '{value:,.0f}',



'하이차트' 카테고리의 다른 글

하이차트 Y축 동적 변경  (0) 2018.12.11

하이차트 yAxis change method


하이차트 그래프 생성 후 y축의 max, min value 변경


<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>

<script src="https://code.highcharts.com/highcharts.js"></script>

<script src="https://code.highcharts.com/modules/exporting.js"></script>


<div id="container" style="height: 400px"></div>

<button id="button" class="autocompare">y축 크게</button>

<button id="button1" class="autocompare">y축 작게</button>


<script>

    var chart = Highcharts.chart('container', {

        endOnTick:false,

        startOnTick:false,

        series: [{

            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]

        }]


    });



    // the button action

    $('#button').click(function() {

        

        var max = chart.yAxis[0].max;

        var min = chart.yAxis[0].min;

        max+=10;

        chart.yAxis[0].setExtremes(min,max);

    });

     $('#button1').click(function() {

        

        var max = chart.yAxis[0].max;

        var min = chart.yAxis[0].min;

        min-=10;

        chart.yAxis[0].setExtremes(min,max);

    });


</script>

'하이차트' 카테고리의 다른 글

하이차트 y축 천단위 , 표시  (0) 2018.12.27

null인 자료가 null로 나오지 않게 하고싶을때


mySQL , mariaDB null

널치리 

ifnull(칼럼명,0) 


오라클 nvl(칼럼명,0)

제이쿼리 선택자

  • element Selector

    • $(document).ready(function(){
        $("button").click(function(){
            $("p").hide();
        });
      });
  • #id Selector

    • $(document).ready(function(){
        $("button").click(function(){
            $("#test").hide();
        });
      });
  • .class Selector

    • $(document).ready(function(){
        $("button").click(function(){
            $(".test").hide();
        });
      });
  • More jQuery Selectors

    • $("*")  Selects all elements    
      $(this) Selects the current HTML element
      $("p.intro") Selects all <p> elements with class="intro"
      $("p:first") Selects the first <p> element
      $("ul li:first") Selects the first <li> element of the first <ul>
      $("ul li:first-child") Selects the first <li> element of every <ul>
      $("[href]") Selects all elements with an href attribute
      $("a[target='_blank']") Selects all <a> elements with a target attribute value equal to "_blank"
      $("a[target!='_blank']") Selects all <a> elements with a target attribute value NOT equal to "_blank"
      $(":button") Selects all <button> elements and <input> elements of type="button"
      $("tr:even") Selects all even <tr> elements
      $("tr:odd") Selects all odd <tr> elements


'jquery' 카테고리의 다른 글

<tr>에서 get value() 벨류값 가져오기  (0) 2019.05.22
제이쿼리 소개  (0) 2018.10.14
jquery Json date read  (0) 2018.10.14
jquery selector 선택자  (0) 2018.10.14

+ Recent posts