본문 바로가기

Categories118

[MSSQL] CREATE문 사용하기 --테이블 생성 (How To Create table) Example)CREATE TABLE tblTEST([seq] [bigint] IDENTITY(1,1) NOT NULL, --1씩 증가, NULL불가능[firstColumn] [nvarchar](50) NULL,[SecondColumn] [nvarchar](50) NULL,[ThirdColumn] [nvarchar](50) NULL) Result) 2016. 11. 7.
[JQuery] textarea값 받기 JQuery textarea값 받기 익스에선 되는데 파폭에서 안되는 경우 textarea의 값을 $("#memo").text();로 받을 경우익스플로러에서는 작동하나 크롬, 파이어폭스, 사파리에서 작동하지 않는 경우. $("#memo").val();로 받아야 정상적으로 작동함. textarea의 값은 text();가 아닌 val();로 받을 것. How to send textarea value in chrome or safari. if cannot send textarea value with .text();using .val(); instead of .text(); textarea have to be use with .val();when you get a value. 2016. 11. 7.
[C] 구구단 출력 C로 구구단 출력하기 #include int main(void){int a=2,b=1;//선언 //for문 실행시 ()가맞으면 {}안의 실행문이 실행됨for(a=2;a 2016. 11. 4.
[SQL] unclosed quotation mark after the character string '.' Error C#, VB, JAVA등에서 Incorrect syntax near ''. unclosed quotation mark after the character string '.'과 같은 에러가 발생할 경우 언어상 문제가 아닌 SQL상의 문제. SELECT, UPDATE, INSERT, DELETE구문의 SQL을 실행할 때홑따옴표가 들어가서 SQL상 에러 발생 예시)UPDATE tblTmpTable SET title = 'Today's Deal' WHERE seq = 1 해결방안)값에 '을 다른 문자로 변환UPDATE tblTmpTable SET title = 'Today''s Deal' WHERE seq = 1 How to solve unclosed quotation mark after the characte.. 2016. 11. 2.