Skip to content

Commit

Permalink
bindParameters example was wrong. fixes #50
Browse files Browse the repository at this point in the history
  • Loading branch information
Abscissa committed Apr 14, 2016
1 parent 1535460 commit 19e1d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/mysql/protocol/commands.d
Expand Up @@ -633,7 +633,6 @@ public:
* c.prepare();
* Variant[] va;
* va.length = 3;
* c.bindParameters(va);
* DataRecord dr; // Some data input facility
* ulong ra;
* do
Expand All @@ -642,6 +641,7 @@ public:
* va[0] = dr("Name");
* va[1] = dr("City");
* va[2] = dr("Whatever");
* c.bindParameters(va);
* c.execPrepared(ra);
* } while(tod < "17:30");
* ------------
Expand Down

0 comments on commit 19e1d00

Please sign in to comment.