![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Thoughts? |
#3
| |||
| |||
|
#4
| |||
| |||
|
|
I've been mulling over the possibility of writing a universal DB command line interface program. The finished product would function in the mode of Oracle's SQL*Plus or PostgreSQL's psql. The utility of this program would lie in its ability to make multiple simultaneous connections to different types of databases and to move data among them arbitrarily. The design of the new CLI would be highly modular so that new interface modules could be added easily. Has this been considered or attempted before? |
|
[...] Thoughts? |
#5
| |||
| |||
|
|
From a data architect point of view, scalability and availablity would be |
|
Hi everybody, I've been mulling over the possibility of writing a universal DB command line interface program. The finished product would function in the mode of Oracle's SQL*Plus or PostgreSQL's psql. The utility of this program would lie in its ability to make multiple simultaneous connections to different types of databases and to move data among them arbitrarily. The design of the new CLI would be highly modular so that new interface modules could be added easily. Has this been considered or attempted before? I would like to be able to do things like this: CLI> connect to foo; Connected to Oracle instance FOO CLI> connect to bar; Connected to SyBase instance BAR CLI> select * from foo.tbl into bar.tbl; 42 rows selected ... that sort of thing. Thoughts? |
#6
| |||
| |||
|
|
Hi everybody, I've been mulling over the possibility of writing a universal DB command line interface program. The finished product would function in the mode of Oracle's SQL*Plus or PostgreSQL's psql. The utility of this program would lie in its ability to make multiple simultaneous connections to different types of databases and to move data among them arbitrarily. The design of the new CLI would be highly modular so that new interface modules could be added easily. Has this been considered or attempted before? |
|
I would like to be able to do things like this: CLI> connect to foo; Connected to Oracle instance FOO CLI> connect to bar; Connected to SyBase instance BAR CLI> select * from foo.tbl into bar.tbl; 42 rows selected ... that sort of thing. Thoughts? |
#7
| |||
| |||
|
|
simplicissimus (AT) gmail (DOT) com wrote: |
|
I would like to be able to do things like this: CLI> connect to foo; Connected to Oracle instance FOO CLI> connect to bar; Connected to SyBase instance BAR CLI> select * from foo.tbl into bar.tbl; 42 rows selected ... that sort of thing. Thoughts? Is that anywhere near standard SQL? I don't think so. Why would you not use |
|
INSERT INTO bar.tbl ( select * from foo.tbl ); ? |
#8
| |||
| |||
|
|
simplicissimus (AT) gmail (DOT) com wrote: Hi everybody, I've been mulling over the possibility of writing a universal DB command line interface program. The finished product would function in the mode of Oracle's SQL*Plus or PostgreSQL's psql. The utility of this program would lie in its ability to make multiple simultaneous connections to different types of databases and to move data among them arbitrarily. The design of the new CLI would be highly modular so that new interface modules could be added easily. Has this been considered or attempted before? ms access USING odbc That's far too 1990s Go open source and use OpenOffice Base
|
|
Oh, You wanted a 1980's style command line interface. I would bet there's something in the PERL archives that fits your requirements. |
#9
| |||
| |||
|
|
Thoughts? |
![]() |
| Thread Tools | |
| Display Modes | |
| |