Common SQL command line program?

Is there any application / project that provides you with a SQL command line client that will work with several databases and / or provides a mechanism for writing your own drivers?

In other words, I'm looking for something like the mysql command-line client or SQL * Plus for Oracle, but this database agnostic.

All platforms are welcome, but additional points for OS X / * nix are suitable.

+4
source share
3 answers

Why not use something on Perl and DBI like DBI-Shell ?

+2
source

Try sqlsharp from the Mono subversion repository . You can define new providers through the configuration file. They are downloaded from .NET collections, so you can write your own provider if you want, but Mono already has MS SQL and Oracle, as well as postgres and MySQL provide their own .NET assemblies.

It works on any platform supported by Mono and MS.NET.

+3
source

SQL client and Crunchyfrog multi-database interface , which Native database shell offers. Not sure if this matches your recruitment.

0
source

All Articles