1

I have been using MySQL for years and have decided that for a new project I'd like to use something newer liker Volt DB.

I have read all the documentation on the Volt DB website and although it mentions a web client for viewing the structure it doesn't say if there is a way of viewing data live in the database.

Hoping for a web based client like phpMyAdmin or maybe a desktop client like Navicat (Windows) / Sequal (OSX).

Neil Lunn
  • 148,042
  • 36
  • 346
  • 317
JonathanBristow
  • 1,066
  • 2
  • 13
  • 36

1 Answers1

2

VoltDB includes a web interface called Web Studio on port 8080 by default, that provides a SQL interface with tabular result formatting. You could use this to select, insert, update, or delete records through SQL statements or by calling stored procedures.

You can also connect to VoltDB using desktop tools that can connect using the JDBC driver, such as SQuirreL. We are working on an ODBC driver in the next few months that will enable a wider choice of desktop tools to connect.

BenjaminBallard
  • 1,482
  • 12
  • 11