从phpmyadmin访问.sqlite数据库? FF饼干

时间:2009-10-10 01:10:01

标签: sqlite cookies phpmyadmin

我正在尝试查看我的firefox cookies db(cookies.sqlite)。由于我从未使用除phpmyadmin以外的任何东西访问dbs,因此我不知道如何查看此sqlite文件的内容。有localhost / sqlitemanager,但我宁愿坚持我习惯的phpmyadmin接口。

任何想法如何在phpmyadmin中以正常方式打开/查看此sqlite db?可能吗?

提前致谢

P.S。我知道浏览器cookie是非常常见的访问/播放。如果你知道另一个更具针对这个目标的工具,请在评论中给我一个答案或建议。

3 个答案:

答案 0 :(得分:3)

还有几个用于sqlite的Web界面。

phpSQLiteAdmin

SQLiteManager

Simple SQLite Manager

SQLite Admin

WizSQLiteAdmin

ezSqliteAdmin

SQLiteWebAdmin

knoda

我还没有尝试过任何一个 - 事实上,我在研究sqlite web前端时发现了这个问题,供我自己使用。但我也来自phpMyAdmin背景,所以我打算尝试的第一个是phpSQLiteAdmin。

答案 1 :(得分:1)

我想有各种各样的GUI程序可以抓住你的手。但是,如果我对db moz_cookies中的表cookies.sqlite感兴趣,我将向您展示我会做什么。

$ 
$ sqlite3 cookies.sqlite
SQLite version 3.5.9
Enter ".help" for instructions
sqlite> .schema
CREATE TABLE moz_cookies (id INTEGER PRIMARY KEY, name TEXT, value TEXT, host TEXT, path TEXT,expiry INTEGER, lastAccessed INTEGER, isSecure INTEGER, isHttpOnly INTEGER);
sqlite> select * from moz_cookies limit 1;
1248713741170186|PREF|ID=12d44375be9e7c86:U=d07dae1b87f4537c:LD=en:NR=100:TM=1248713740:LM=1254091506:FV=2:IG=3:S=Jdo_PXt92J5ojL6E|.google.com|/|1317163505|1255144201180851|0|0
sqlite> 

您可能需要sqlite3 CLI程序。它可以在Unix和Windows上使用。

SQLITE3(1)                                                          SQLITE3(1)

NAME
       sqlite3 - A command line interface for SQLite version 3

SYNOPSIS
       sqlite3 [options] [databasefile] [SQL]

SUMMARY
       sqlite3  is  a  terminal-based front-end to the SQLite library that can
       evaluate queries interactively and display the results in multiple for‐
       mats.  sqlite3 can also be used within shell scripts and other applica‐
       tions to provide batch processing features.

DESCRIPTION
       To start a sqlite3 interactive session, invoke the sqlite3 command  and
       optionally  provide  the name of a database file.  If the database file
       does not exist, it will be created.  If the database file  does  exist,
       it will be opened.

它有两类操作。

直接用于交互式shell的命令以.开头。任何事情都是;照常终止的SQL查询。

答案 2 :(得分:0)

Adminer是一个类似PHPMyAdmin的系统,支持MySQL,PostgreSQL, SQLite ,MS SQL,Oracle,SimpleDB,Elasticsearch,MongoDB等。