Базы данных SQLite Insert и того, чтение всегда будет одно и то же?
I insert data into SQLite table using "INSERT INTO.." statement I read data from table using SELCT "FieldName" from "TableName" (that is without using ORDER BY) => Doubt is, whehter the read order will be same as insert order?? I expect the data in same order that is inserted?? Should i add an index field in table and use ORDER by for ensuring the order???
Что я уже пробовал:
Когда я пробовал обычно вставлять в том же порядке, что и тот, в котором он вставлен? Будет ли он всегда быть таким?