Showing posts with label execute the batch apex class using developer console. Show all posts
Showing posts with label execute the batch apex class using developer console. Show all posts

Thursday, July 10, 2014

How to execute the batch apex class using developer console?

How to execute the batch apex class using developer console?

Example:

Batch Apex Class:
global class accountList implements Database.Batchable<Sobject> {

global Database.querylocator start(Database.BatchableContext BC) {
return Database.getQueryLocator([select Id, Name from Account]);
}
global void execute(Database.BatchableContext BC, list<Account> scope) {
return Database.getQueryLocator(query);
}
global void finish(Database.BatchableContext BC) {
}
}

Execute the Batch Apex Class using Developer Console using below,

accountList objTest = new accountList();
Database.executebatch(objTest);




 
| ,