-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a17b0a
commit 958c785
Showing
4 changed files
with
268 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: "Database Funcs" | ||
description: "Database Funcs in R" | ||
layout: "guide" | ||
icon: "code-file" | ||
weight: 12 | ||
--- | ||
|
||
###### {$page.description} | ||
|
||
<article id="1"> | ||
|
||
## dbInsert | ||
|
||
Insert SObject(s) into database | ||
|
||
|
||
```javascript | ||
Account acc = ...; | ||
R.dbInsert.run(acc); | ||
``` | ||
|
||
</article> | ||
|
||
<article id="2"> | ||
|
||
## dbUpdate | ||
|
||
Update SObject(s) into database | ||
|
||
|
||
```javascript | ||
Account acc = ...; | ||
R.dbUpdate.run(acc); | ||
``` | ||
|
||
</article> | ||
|
||
<article id="3"> | ||
|
||
## dbDelete | ||
|
||
Delete SObject(s) from database | ||
|
||
|
||
```javascript | ||
Account acc = ...; | ||
R.dbDelete.run(acc); | ||
``` | ||
|
||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters