Clarification comments for parameters, no bug. r=sdwilsh

This commit is contained in:
dtownsend@oxymoronical.com 2007-08-30 16:46:56 -07:00
Родитель 64c078977d
Коммит fc448804e6
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -107,7 +107,8 @@ interface mozIStorageConnection : nsISupports {
/**
* Create a mozIStorageStatement for the given SQL expression. The
* expression may use ? to indicate sequential numbered arguments,
* or :name and $var to indicate named arguments.
* ?1, ?2 etc. to indicate specific numbered arguments or :name and
* $var to indicate named arguments.
*
* @param aSQLStatement The SQL statement to execute
*

Просмотреть файл

@ -105,7 +105,8 @@ interface mozIStorageStatement : mozIStorageValueArray {
void reset();
/**
* Bind the given value to the parameter at aParamIndex.
* Bind the given value to the parameter at aParamIndex. Index 0
* denotes the first numbered argument or ?1.
*/
void bindUTF8StringParameter(in unsigned long aParamIndex,
in AUTF8String aValue);