Activity Forums Salesforce® Discussions How Standard Fields and Custom Fields related information is saved inside Salesforce Database ?

  • How Standard Fields and Custom Fields related information is saved inside Salesforce Database ?

    Posted by Aman on July 7, 2017 at 5:35 am

    Is every Standard and Custom Object is created as a different Database table?

    Radhakrishna replied 6 years, 8 months ago 2 Members · 1 Reply
  • 1 Reply
  • Radhakrishna

    Member
    July 7, 2017 at 10:58 am

    Hello Aman,

    It's not a matter of security. The HTTP protocol defines GET-type requests as being idempotent, while POSTs may have side effects. In plain English, that means that GET is used for viewing something, without changing it, while POST is used for changing something. For example, a search page should use GET, while a form that changes your password should use POST.

    Also, note that PHP confuses the concepts a bit. A POST request gets input from the query string and through the request body. A GET request just gets input from the query string. So a POST request is a superset of a GET request; you can use $_GET in a POST request, and it may even make sense to have parameters with the same name in $_POST and $_GET that mean different things.

    For example, let's say you have a form for editing an article. The article-id may be in the query string (and, so, available through $_GET['id']), but let's say that you want to change the article-id. The new id may then be present in the request body ($_POST['id']). OK, perhaps that's not the best example, but I hope it illustrates the difference between the two.

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos