Skip to content

Commit fd54a2c

Browse files
committed
fixed typo in comment
1 parent 53d4241 commit fd54a2c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/studio_integration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if (! libs ) {
2929

3030
## Data definition
3131

32-
The data input definition relies on support functions defined in `jdbc.js`.
32+
The data input definition relies on support functions defined in [jdbc.js](jdbc.js).
3333

3434
You include that script using:
3535

@@ -53,7 +53,7 @@ Then use the defined functions to create a connector and define inputs:
5353
db.execute("DROP TABLE result");
5454
db.execute("CREATE TABLE result(oil VARCHAR(30), gas VARCHAR(30), blend FLOAT, a FLOAT)");
5555
56-
// Formerly: items to DBUpdate(db, )
56+
// write results to database
5757
db.update("items", "INSERT INTO result(oil, gas, blend, a) VALUES (?,?,?,?)");
5858
```
5959

examples/studio_integration/demo.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ prepare {
2020
db.execute("DROP TABLE result");
2121
db.execute("CREATE TABLE result(oil VARCHAR(30), gas VARCHAR(30), blend FLOAT, a FLOAT)");
2222

23-
// Formerly: items to DBUpdate(db, )
23+
// write results to database
2424
db.update("items", "INSERT INTO result(oil, gas, blend, a) VALUES (?,?,?,?)");
2525
}
2626

0 commit comments

Comments
 (0)