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); |