Click to See Complete Forum and Search --> : inserting at the top of a DB


aegiss
07-16-2006, 06:48 PM
I was wondering whats the best way to insert data at the top of a database? I want my database to have the most recent entries first. Thanks!

chazzy
07-16-2006, 10:01 PM
i think you have a poor concept of what a database is...

you don't store entries sequentially in a database. the way they are stored should be unknown to you. you can retrieve them in particular order - let's say you have a datetime field that had the time it was inserted, you could order by that when returning. you can't count on a database to return results the same way all the time.

aegiss
07-17-2006, 11:05 AM
ok i guess i'll try that then. thanks!