일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- sql랭킹
- xmldom
- join
- array
- VarType
- 정규식
- WML
- tempDB
- update
- asp함수
- jdbc driver
- wap
- JavaScript
- FileSystemObject
- 인젝션
- instr
- VARIABLE
- 이미지세로길이
- 이미지가로길이
- SPLIT
- XML
- ERD
- 자바기초
- sql업데이트
- MSSQL보안
- inner join
- injection
- javascript 한글입력체크
- sql순위
- 한글입력체크
- Today
- Total
목록전체 글 (384)
3초기억력
(a 기존폴더, b 수정폴더) 파일 개별 비교 git diff a/order_table.php b/order_table.php > patch.txt 파일 폴더 비교(a 기존폴더, b 수정폴더) git diff a/ b/ > patch2.txt
1. Oracle 11g xe : project[EMP] - build.gradle dependencies { implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4' runtimeOnly 'com.oracle.database.jdbc:ojdbc8' } - application.properties spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver spring.datasource.url=jdbc:oracle:thin:@localhost:1521:xe spring.datasource.username=scott spring.datasource.password=ti..
1. DB 객체 연결 Set db = Server.CreateObject("ADODB.Connection") strConnection ="Provider=sqloledb;Data Source=DB서버,포트;Initial Catalog=DB명;User ID=사용자명;Password=비밀번호;" db.CursorLocation = 3 db.Open strConnection 2. DB 프로시저 실행문 Set Cmd = Server.CreateObject("ADODB.Command") With Cmd .ActiveConnection = db .CommandText = "프로시저명" .CommandType = adCmdStoredProc .Parameters.Append .CreateParameter("@idx"..
온갖 웹사이트 다 검색하여 한글, base64 decode 에 대한 걸 찾다찾다 참조하여 만듦. 여러 소스들도 보면, 자체 인코딩/디코딩하여 쓰면 다 사용가능하지만, 만약 다른 서버나 플랫폼에서 만든 base64로 하면 디코딩이 안되는 현상 발견. 외부에서 생성된 base64도 동일한 값을 내기 위해, 위 클래스.함수를 사용하면 정확히 일치하는 decode 내용을 볼 수 있음. 파일 : 한글 포함한 문자열의 base64 encode/decode 방법 예제 Set Crypt = New CryptBase64_hangul test = "도" Response.write Crypt.Base64Encode(test) & " " Response.write Replace(Crypt.Base64Encode(test), ..

# 동영상 1. 유튜브 : youtu.be/uoNl06nTsGc 1. intro.jsp 파일 생성 - 일단 MVC 로 하기전에 intro.jsp 파일 생성 경로 ( 반드시 WebContent 하위에 위치해야한다. 추후 MVC 할때는 WEB-INF 하위에 보안상 위치 해야함 ) - 프로젝트 명 > WebContent 우클릭 > New 클릭 > JSP file 클릭 - intro.jsp 파일 만들기 - 서버를 설치해야 jsp 파일을 볼 수 있다. 2. tomcat 설치 - tomcat 설치 #1 - tomcat 설치 #2 : Apache > Tomcat v8.0 선택 > Next - tomcat 설치 #3 : tomcat 다운로드 시작 : tomcat 경로 지정 & 다운로드 중 확인 : 다운로드 완료시 Ne..