function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
subramanyam Rsubramanyam R 

any one clarify this this error...Error: Compile Error: Illegal assignment from List<Account> to List<account> at line 4 column 8

global class scheduleApex implements Schedulable {
   global void execute(SchedulableContext SC) {
       
       list<Account> acclist=[select id,description 
                               from account limit 20];
                               
       for(Account a: acclist){
           a.description='schedule apex';
       } 
       
       update acclist;                        
   }
   
 }
ManojjenaManojjena
Hi subramanyam R,

There is no chance to get  thios error from the code you have posted here .
SivaGSivaG
Hi,

I copied your code and it got saved successfully. Don't see any issues with the code.

Thanks
Kumar
subramanyam Rsubramanyam R
yes now cleared......i create the apex class with the name of account...so thats why it was showing error..now cleared