Skip to content

Commit f2f6668

Browse files
committed
improve content
1 parent cbaffc5 commit f2f6668

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

database/index.md

+17
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,21 @@ var
168168
resultSet := db.prepare('SELECT * FROM users').execute();
169169
```
170170

171+
Unlike SQLdb which separates how you execute SQL command that returns result set and ones that do not return result set such
172+
`open()` for `SELECT` and `execSQL()` for `INSERT` or `UPDATE`, IRdbms interface
173+
abstracts this, so you always call `execute()` method for `SELECT`, `INSERT` or `UPDATE`.
174+
175+
```
176+
fRdbms.prepare(
177+
'INSERT INTO atable ' +
178+
'(id, operation, resetTimestamp) VALUES ' +
179+
'(:idCol, :oprCol, :resetTmp)'
180+
).paramStr('idCol', 'abc')
181+
.paramInt('oprCol', 10)
182+
.paramInt('resetTmp', 2000)
183+
.execute();
184+
```
185+
171186
### Passing parameters to SQL query
172187

173188
To avoid SQL injection, it is recommended to use prepared statement with parameter
@@ -178,6 +193,8 @@ resultSet := db.prepare('SELECT * FROM users WHERE user_email = :userEmail')
178193
.execute();
179194
```
180195

196+
To pass integer, float, datetime data, use `paramInt()`, `paramFloat()`, `paramDateTime()` respectively.
197+
181198
## Get total rows in result set
182199

183200
```

0 commit comments

Comments
 (0)