0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

APEX開発向上_001

Posted at

オブジェクト項目の値の付与/更新

ソース例01:
  Account acc01 = new Account();
  acc01.put('Name','yosi');
  acc01.put('address','Tokyo');

  upsert acc01;


ソース例02:
  Account acc02 = new Account();
  acc02.Name = yosi;
  acc02.address = Tokyo;

  upsert acc02;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?