Is there a place to make suggestions on improvement for monetdb? Three things that probably seem minor compared to the goals of monetdb, but which would be very helpful in my opinion: - better copy to csv, a la postgres, with keywords lile "csv" and "header" - ctrl-c to cancel a query but not kill the mclient sesion - history kept and re-used between mclient sessions -- http://yves.zioup.com gpg: 4096R/32B0F416
hi you can keep history
https://www.monetdb.org/Documentation/Cookbooks/SQLrecipies/Clients/MAPI
i like the ctrl+c idea, maybe bugzilla feature request?
https://www.monetdb.org/bugzilla/ but i also love how skeletal mclient is
On Fri, Sep 30, 2016 at 3:24 AM, Yves Dorfsman
Is there a place to make suggestions on improvement for monetdb?
Three things that probably seem minor compared to the goals of monetdb, but which would be very helpful in my opinion:
- better copy to csv, a la postgres, with keywords lile "csv" and "header" - ctrl-c to cancel a query but not kill the mclient sesion - history kept and re-used between mclient sessions
-- http://yves.zioup.com gpg: 4096R/32B0F416
_______________________________________________ users-list mailing list users-list@monetdb.org https://www.monetdb.org/mailman/listinfo/users-list
On 30/09/16 09:24, Yves Dorfsman wrote:
Is there a place to make suggestions on improvement for monetdb?
The official place: http://bugs.monetdb.org/ and mark the severity of the "bug" as Enhancement.
Three things that probably seem minor compared to the goals of monetdb, but which would be very helpful in my opinion:
- better copy to csv, a la postgres, with keywords lile "csv" and "header"
I usually use this, in interactive mclient: \> somefile.csv \f csv+, select * from table; \> \f sql See the mclient manual.
- ctrl-c to cancel a query but not kill the mclient sesion
mserver already stops executing a query if the connection to the client falls away. What is needed is that mclient closes the connection to the server when an interrupt happens and then makes a new connection. This is a bit harder than it sounds since mclient was never designed to do this. It is definitely easier to stop mclient and restart it.
- history kept and re-used between mclient sessions
It's already there. Use the -H option. -- Sjoerd Mullender
participants (3)
-
Anthony Damico
-
Sjoerd Mullender
-
Yves Dorfsman