Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- samba
- PHP
- Jrun
- 국민연금
- 블로그 방문자 늘리기
- 블루수국그림
- HTML
- JavaScript
- 블로그 수익화
- IIS
- Vista
- 블로그 조회수 늘리기
- 블로그 조회수
- .NET
- MySQL
- Administrator
- flash
- MSSQL
- 인테리어그림
- JSP
- 소득세
- Jexcel
- Adobe pdf reader
- oralce
- 즐겨찾기 추가
- CSS
- 에덴미술
- 갑근세
- CVS
- Eclipse
Archives
- Today
- Total
I LOVE EJ
SOQL 쿼리를 사용하여 1000 개 이상의 레코드 검색하는 방법 본문
for(Account[] acts : [select id from Account]) { for (Account a : acts) { ....write your code here } }
for (List<Account> accts : [Select id from account])
{
//The accts list will have 200 records at a time
for (Account a : accts)
{
…
}
}
'SFDC' 카테고리의 다른 글
클라우드 컴퓨팅 서비스 (0) | 2012.08.13 |
---|---|
SaaS [위키백과] (0) | 2012.08.13 |
SFDC 자주쓰는 문법 (0) | 2012.07.25 |
로그인IP범위 (0) | 2012.07.18 |
형변환 (0) | 2012.06.25 |