Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Unified Diff: sql/statement.h

Issue 9159020: Create a class to represent a DOM Storage Database. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove some unused includes. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sql/statement.cc » ('j') | sql/statement.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/statement.h
diff --git a/sql/statement.h b/sql/statement.h
index c7e2c40542f90f00b71c5a84d31ea5a89e4c82d4..4a89656c807fa35f3c4f12a5ec01a20bfb99993a 100644
--- a/sql/statement.h
+++ b/sql/statement.h
@@ -126,6 +126,7 @@ class SQL_EXPORT Statement {
// where that type is not the native type. For safety, call ColumnType only
// on a column before getting the value out in any way.
ColType ColumnType(int col) const;
+ ColType DeclaredColumnType(int col) const;
// These all take a 0-based argument index.
bool ColumnBool(int col) const;
@@ -143,6 +144,7 @@ class SQL_EXPORT Statement {
bool ColumnBlobAsString(int col, std::string* blob);
bool ColumnBlobAsVector(int col, std::vector<char>* val) const;
bool ColumnBlobAsVector(int col, std::vector<unsigned char>* val) const;
+ bool ColumnBlobAsString16(int col, string16* val) const;
michaeln 2012/02/01 21:03:11 can u move this up so its under the other String v
benm (inactive) 2012/02/02 12:14:49 Done.
// Diagnostics --------------------------------------------------------------
« no previous file with comments | « no previous file | sql/statement.cc » ('j') | sql/statement.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698