My column name for the sqlite database is "name" but when I go to get data from the database the column name seems to be "nameTEXT" even though there's a space between name and TEXT in my SQL declaration for the table name.
EDIT-------
My Create Table statement is
String CREATE_INVENTORY_TABLE = "CREATE TABLE " + TABLE_INVENTORY + "(" + KEY_PD_NAME + " TEXT PRIMARY KEY," + KEY_PD_PRICE + " DECIMAL(10,2)," + KEY_PD_QUANTITY + " INTEGER" + ")";
Log.d("SQL STATEMENT", CREATE_INVENTORY_TABLE);
db.execSQL(CREATE_INVENTORY_TABLE);