File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ Broad advancement status:
14
14
- command-line interface to execute SQL snippets on multiple databases and compare results: mostly done.
15
15
Major missing features: proper support for character sets
16
16
- database support: good coverage. Of the 'well-known players', only Oracle is missing
17
- - GUI interface: only displays documentation
17
+ - GUI interface: displays documentation and the list of databases. It also includes Adminer for db management, but
18
+ does not allow parallel execution of queries
18
19
19
20
See the [ TODO] ( ./doc/TODO.md ) and [ CHANGELOG] ( ./doc/WHATSNEW.md ) files for more details on recent improvements and future plans.
20
21
Original file line number Diff line number Diff line change 19
19
+ add a logo
20
20
21
21
- admin(er) improvements:
22
- + provide a pre-filled list of databases => sqllite not working
22
+ + sqllite not working in pre-filled list of databases (miss filename for root db)
23
23
+ add sql log file
24
24
+ add data dump capabilities
25
25
+ add schema dump capabilities
26
- + mssql not supported with pdo_sqlsrv ext
27
26
+ add a composer post-upgrade script that downloads automatically the latest version or at least checks it
28
27
+ add portainer.io; opcache control panel (reverse-proxying one from web)? (that and/or matthimatiker/opcache-bundle)
29
28
30
29
- worker: improve cli scripts
31
30
+ add a separate sf console that only registers db3v4l commands
32
31
+ either remove ./vendor/bin/doctrine-dbal or make it actually work
33
32
34
- - worker+web: when listing instances, show the _ real_ db version nr. (from a query, not config)
33
+ - worker+web: when listing instances, show the _ real_ db version nr. (from a query, not config => ses how Adminer does it )
35
34
36
35
- worker: improve profile of 'db3v4l' account
37
36
+ esp: add APP_ENV and APP_DEBUG env vars (via bootstrap.sh ?)
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ Version 0.7 (unreleased)
4
4
- New: allow to run sql snippets against existing databases (within the predefined db servers).
5
5
This allows scenarios where data is persisted between execution of different queries
6
6
7
- - New: began work on a web interface. For the moment, all it does is display some documentation
7
+ - New: began work on a web interface. For the moment, all it does is display some documentation and the list of dbs
8
8
9
9
- Fixed: the app would not be set up automatically on 1st run of the container (introduced in 0.4)
10
10
11
+ - Improved: the bundled Adminer now comes with a pre-filled list of databases
12
+
11
13
- Improved: moved application to Symfony 4.4.1; upgraded phpmyadmin/sql-parser to 5.1.0
12
14
13
15
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ RUN echo 'export PATH=$PATH:/usr/lib/oracle/19.5/client64/bin' > /etc/profile.d/
78
78
79
79
# ## Tools not shared with worker
80
80
81
+ RUN ln -s /etc/php/7.3/mods-available/sqlsrv.ini /etc/php/7.3/fpm/conf.d/90-sqlsrv.ini
81
82
RUN ln -s /etc/php/7.3/mods-available/pdo_sqlsrv.ini /etc/php/7.3/fpm/conf.d/90-pdo_sqlsrv.ini
82
83
RUN ln -s /etc/php/7.3/mods-available/oci8.ini /etc/php/7.3/fpm/conf.d/90-oci8.ini
83
84
You can’t perform that action at this time.
0 commit comments