Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

How do I decode the Last_Date_ Visited field in the places.sqlite db?

  • 3 ответа
  • 1 имеет эту проблему
  • 1472 просмотра
  • Последний ответ от cor-el

more options

I opened the places.sqlite file in Firefox SQLite Manager plug in. I can see the Last_Date_Visited field and can see it is a very large Integer. I need to be able to decode the date and time out of this field for a Human Resources matter. Thanks

I opened the places.sqlite file in Firefox SQLite Manager plug in. I can see the Last_Date_Visited field and can see it is a very large Integer. I need to be able to decode the date and time out of this field for a Human Resources matter. Thanks

Выбранное решение

Try using this time converter.
http://www.esqsoft.com/javascript_examples/date-to-epoch.htm
Put that integer in Option 2 and hit To Date

Прочитайте этот ответ в контексте 👍 1

Все ответы (3)

more options

Выбранное решение

Try using this time converter.
http://www.esqsoft.com/javascript_examples/date-to-epoch.htm
Put that integer in Option 2 and hit To Date

more options

hello AlanMcGee, you can use a site like www.epochconverter.com in order to convert the timestamps into a human-readable format.

edit: ed was faster on the reply button :-)

Изменено philipp

more options

You can also consider to run a query in the SQLite Manager extension to decode an entry.
You can add more columns as required and adjust the like parameter.

SELECT datetime(visit_date/1000000,'unixepoch') AS visit_date, url, title, visit_count, frecency
FROM moz_places, moz_historyvisits
WHERE moz_places.id = moz_historyvisits.place_id AND url LIKE '%google.com%'