Ask HN: Text-based interface for PostgreSQL?
1–4 of 4 posts
Re: Ask HN: Text-based interface for PostgreSQL?
#2If you're going to work with a relational database you need to learn SQL and how the relational model works. There's no shortcut that won't just leave you worse off in the long run. SQL was originally designed as an end-user friendly way to work with relational data.
For learning about relational database theory I recommend Chris Date's book "Database In Depth: Relational Theory For Practitioners." There are quite a few good books for learning SQL. For learning the PostgreSQL flavor of SQL the PostgreSQL docs are probably the best place to start.
Re: Ask HN: Text-based interface for PostgreSQL?
#3PostgreSQL comes with a command line client: psql ( http://www.postgresql.org/docs/6.4/static/app-psql.htm ) If you're going to work with a relational database you need to learn SQL and how the relational model works. There's no shortcut that won't just leave you worse off in the long run. SQL was originally designed as an end-user friendly way to work with relational data. For learning about relational database theo…
Re: Ask HN: Text-based interface for PostgreSQL?
#4PostgreSQL comes with a command line client: psql ( http://www.postgresql.org/docs/6.4/static/app-psql.htm ) If you're going to work with a relational database you need to learn SQL and how the relational model works. There's no shortcut that won't just leave you worse off in the long run. SQL was originally designed as an end-user friendly way to work with relational data. For learning about relational database theo…
Thanks for your reply, but that's exactley what I don't want to do. I know about psql and I know how to write SQL statements, but what I'm looking for is a text-based interface that let me perform tasks (similar to what you can do with phpmyadmin) without writing SQL statements.