개발자(58)
-
jsp- 연산자 , 문장, 함수
03장 산술연산자 var a = 10; var b= 3; console.log(a+b); console.log(a-b); console.log(a*b); console.log(a/b); console.log(a%b); var aa ="10"; console.log(aa+20); console.log(aa-5); console.log(aa*5); console.log(aa/5); var y =3; var y2 =3; ++y; //4 y2++; //4 console.log(y+" "+y2); //y=4, y2=4 var y3 = ++y; //y3 = 5, y=5 var y4 = y2++; // y4=4, y2=5 console.log(y+" "+y3); //5, 5 console.log(y2+" "+y4);..
2023.12.24 -
javascript
01 basic aaaaaaaaaaaaaaa aaaaaaaa aaaaaaaaaaaaaaa id test header ====== capibara coffeebara hello hello 02. dataType 3. 변수 4. 데이터 형변환 데이터가 필요에 의해서 자동으로 형변환 된다. 가. *,/,- 사용하는 경우 ( +제외) 예> var test = “100” * 2; è 200 나. 불린값으로 변환 다음과 같은 5가지 데이터는 필요에 의해서 false 값 으로 변환된다. 역으로 5가지 이외의 데이터는 필요에 의해서 true 값으로 변환된다. 0 -” NaN null undefine 03_0. variable //결과같음 가. 변수 선언 var 변수명; // 파싱단계에서는 undefined 값이 할당된..
2023.12.24 -
My batis2
HashMap List list= service.selectAllHashmap(); System.out.println(list); for (HashMap dept : list) { BigDecimal dno = (BigDecimal) dept.get("DEPTNO");//숫자 BigDecimal형태 저장 int deptno= dno.intValue(); String dname= (String) dept.get("DNAME"); String loc=(String) dept.get("LOC"); System.out.println(deptno+"\t"+dname+"\t"+loc); } System.out.println("======================================="); for (Ha..
2023.12.23 -
My Batis
JDBC_MyBatis_Ver_3 import com.dto.Dept; import com.service.OracleMyBatisService; public class OralceMyBatisMain { public static void main(String[] args) { //SqlSession sess = MySqlSessionFactory.getSqlSession(); //System.out.println(sess); OracleMyBatisService service = new OracleMyBatisService(); //int num = service.update(new Dept(99, "영업","서울")); //System.out.println("update 갯수 : "+num); Dept..
2023.12.19 -
JDBC
오라클 데이터베이스 연동을 위한 4가지 정보를 저장 String driver =”oracle.jdbc.drtiver.OracleDriver”; String url =”jdbc:oracle:thin:@localhost:1521:xe”; String userid =”scott”; String passwd =”tiger”; 2. 드라이버 로딩 Class.forName(driver); 3. Connection 맺기 Connection con = DriverManager.getConnection (url, userid, passwd); 4. SQL문 작성 String query = “SELECT deptno, dname, loc form dept”; 또는 String query = “DELETE FROM dept..
2023.12.14 -
자바 IO
1. 자바의 IO 소스/ 목적지/ 입력/ 출력 2. 표준 입출력 System.in 표준 입력으로서 키보드에서 데이터를 읽어 들일 때 사용한다. import java.awt.im.InputContext; import java.io.IOException; import java.io.InputStream; public class IOTest { public static void main(String[] args) { InputStream is = System.in; try { System.out.println("데이터 입력: "); int n = is.read();//1byte System.out.println((char)n); } catch (IOException e) { e.printStackTrace()..
2023.12.14