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

Unified Diff: sql/statement.h

Issue 10989063: Changed DB to store node positions as Ordinals. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes and corrections Created 8 years, 3 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
Index: sql/statement.h
diff --git a/sql/statement.h b/sql/statement.h
index bd00b0d68d161333543efe5637240f1c243e42a3..b3d3c54edac9256f5eb13f4531f84a56e8a5611b 100644
--- a/sql/statement.h
+++ b/sql/statement.h
@@ -16,16 +16,6 @@
namespace sql {
-// Possible return values from ColumnType in a statement. These should match
-// the values in sqlite3.h.
-enum ColType {
- COLUMN_TYPE_INTEGER = 1,
- COLUMN_TYPE_FLOAT = 2,
- COLUMN_TYPE_TEXT = 3,
- COLUMN_TYPE_BLOB = 4,
- COLUMN_TYPE_NULL = 5,
-};
-
// Normal usage:
// sql::Statement s(connection_.GetUniqueStatement(...));
// s.BindInt(0, a);

Powered by Google App Engine
This is Rietveld 408576698