Skip to content

Commit 387e591

Browse files
scottstaniequinnj
authored andcommitted
Add spaces to parameter list for clarity (#179)
At first read, I didn't realize these were all separate possibilities since they appeared on one line on the web docs
1 parent 844c675 commit 387e591

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/src/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,13 @@ SQLite.load!
3737
> In SQLite, wherever it is valid to include a string literal, one can use a parameter in one of the following forms:
3838
3939
> ?
40+
>
4041
> ?NNN
42+
>
4143
> :AAA
44+
>
4245
> $AAA
46+
>
4347
> @AAA
4448
4549
> In the examples above, NNN is an integer value and AAA is an identifier. A parameter initially has a value of NULL. Prior to calling sqlite3_step() for the first time or immediately after sqlite3_reset(), the application can invoke one of the sqlite3_bind() interfaces to attach values to the parameters. Each call to sqlite3_bind() overrides prior bindings on the same parameter.

0 commit comments

Comments
 (0)