*/*/*/*/*/*/*

qopqop.egloos.com

포토로그



영어과제 English

01. polished
문장= The windows are being polished.
해석=

02. bread/slices
문장= Some bread is being cutting to slices.
해석=

03. water/pitcher
문장= Some water is being poor in the pitcher.
해석=

04. boat/pushed
문장= The boat is being pushed into the water.
해석=

05. weighed
문장= The fishes are being weighed on the scale.
해석=

06. performed
문장= A play is performed on the stage.
해석=

07. shopkeeper
문장= The umbrella is being opened by the shopkeeper.
해석=

08. being painted
문장= Lines are being painted on the road.
해석=

09. shelves
문장= Large books are being placed on the shelves.
해석=

10. served
문장= A customer is being served some fruits.
해석=

11. picked
문장= Some vegetables are being picked in a garden.
해석=

12. prize/hung up
문장= A prize is being hung up on the wall.
해석=

13. plants
문장= The plants are being watered.
해석=

14. fence/white
문장= The fence is being painting white.
해석=

15. loaded/work
문장= Tools are being loaded on to the work vehicle.
해석=

16. lamp/hung
문장= A lamp is being hung from the ceiling.
해석=

17. podium/back
문장= A podium is being placed at the back of the room.
해석=

18. shown
문장= People are being shown to the seat.
해석=

19. connected
문장= A cable is being connected to some of equipment
해석=

20. poured
문장= Liquid is being poured from the bottles.
해석=

 


과제 English

01. hill/with
문장= The hill is covered with snow.
해석= 언덕이 눈으로 덮여져 있다.

02. bushes/row
문장= Bushes are planted in a row.
해석= 관목들이 일렬로 심어져 있다.

03. crowded/patrons
문장= The store is crowded with patrons.
해석= 가게가 손님들도 붐비고 있다.

04. garbage/piled
문장= The garbage is piled in a corner
해석= 쓰레기가 코너에 쌓여있다.

05. reflected/stream
문장= The trees are reflected in the stream.
해석= 나무들이 시냇가에 비쳐지고 있다.

06. covered/cloth
문장= The table is covered with a cloth.
해석= 테이블이 옷으로 덮여있다.

07. parked/bottom
문장= The truck is parked at the bottom of the hill.
해석= 트럭이 언덕 아래에 주차되어 있다.

08. goods/packed
문장= The goods are packed nearly in boxes.
해석= 재화(물건)들이 박스 근처에 포장되어 있다.

09. shelves/with
문장= The shelves are filled with books.
해석= 선반이 책들로 채워져 있다.

10. scattered/through
문장= The buildings are scattered through the countryside.
해석= 빌딩들이 시외에 드문드문있다.

11. plants/arranged
문장= Plants have arranged between the this black cases.
해석= 식물들이 이 검은색케이스 사이에 정렬되어 있다.

12. vase/filled
문장= The vase has been filled with flowers.
해석= 꽃병이 꽃으로 채워져있다.

13. arranged/ledge
문장= Glasses have arranged on the ledge.
해석= 컵들이 선반에 정렬되어 있다.

14. sandals/arranged
문장= The sandals have arranged top of the boxes.
해석= 샌달들이 박스 위에 정렬되어 있다.

15. lawn/mowed
문장= The lawn has been mowed.
해석= 잔디밭이 깍여있다.

16. stacked/top of
문장= The table have been stacked on top of each other.
해석= 테이블이 차곡차곡 쌓여있다.

17. curtains/shut
문장= The curtains have been pulled shut.
해석= 커튼이 쳐져있다.

18. entrance/closed
문장= The main entrance has been closed.
해석= 주출입구가 닫혀있다.

19. chairs/in rows
문장= The chairs have been set up in rows.
해석= 의자가 일렬로 설치되어있다. (놓여있다.)

20. items/displayed
문장= Some items have been displayed in the front of this store.
해석= 몇몇 물품들이 가게 앞에 진열되어 있다.


sqlite Android

<<SQLite사용하기>>
1. SQLiteOpenHelper를 이용해서 db를 오픈하는 작업을 수행
    -> getWritableDatabase메소드를 이용해서 db를 읽기쓰기 가능 용도로 open하면 실제 Sqlite의 기능을 사용할 수 있는
        SQLiteDatabase를 리턴한다.
2. DBHelper와 테이블에서 각각의 기능을 처리할 수 있는 클래스인 DBHandler클래스를 분리하여 작업한다.
3. SQLiteDatabase에서 작업하기
    1) execSQL(sql문)
        : string으로 정의된 sql문을 실행하는 명령문
    2) 테이블에 데이터 insert하기
        - execSQL문을 이용새ㅓ 처리하는 것도 가능 
        - insert메소드
           insert(String table, String nullColumnHack,
                ContentValues values) 메소드를 이용해서 작업
            table : 데이터를 insert할 테이블명
            nullColumnHack : null
            ContentValues values : insert될 데이터를 컬럼과 값의 형태로 
                                저장하는 map유형의 객체 
            ====> 외부에서 입력되어져서 들어오는 값을 이용해서 ContentValues객체를 작성한 후에 
                    insert메소드의 매개변수로 전달

1 2 3 4 5 6 7



메모장