Merge with mozilla-central after backout of bug 434247.

This commit is contained in:
Shawn Wilsher 2008-06-04 12:56:26 -04:00
Родитель 2e347251f9 6691f61f94
Коммит 150c778cca
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -137,6 +137,7 @@ mozStorageStatement::Initialize(mozIStorageConnection *aDBConnection, const nsAC
}
mDBConnection = aDBConnection;
mStatementString.Assign (aSQLStatement);
mParamCount = sqlite3_bind_parameter_count (mDBStatement);
mResultColumnCount = sqlite3_column_count (mDBStatement);
mColumnNames.Clear();
@ -203,8 +204,7 @@ mozStorageStatement::Clone(mozIStorageStatement **_retval)
if (!mss)
return NS_ERROR_OUT_OF_MEMORY;
nsCAutoString sql(sqlite3_sql(mDBStatement));
nsresult rv = mss->Initialize (mDBConnection, sql);
nsresult rv = mss->Initialize (mDBConnection, mStatementString);
NS_ENSURE_SUCCESS(rv, rv);
NS_ADDREF(*_retval = mss);
@ -338,8 +338,7 @@ mozStorageStatement::Reset()
if (!mDBConnection || !mDBStatement)
return NS_ERROR_NOT_INITIALIZED;
PR_LOG(gStorageLog, PR_LOG_DEBUG, ("Resetting statement: '%s'",
sqlite3_sql(mDBStatement)));
PR_LOG(gStorageLog, PR_LOG_DEBUG, ("Resetting statement: '%s'", nsPromiseFlatCString(mStatementString).get()));
sqlite3_reset(mDBStatement);
sqlite3_clear_bindings(mDBStatement);

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

@ -63,6 +63,7 @@ private:
~mozStorageStatement();
protected:
nsCString mStatementString;
nsCOMPtr<mozIStorageConnection> mDBConnection;
sqlite3_stmt *mDBStatement;
PRUint32 mParamCount;