We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0756c9c commit 6cd48b1Copy full SHA for 6cd48b1
src/config/sql-loader.php
@@ -5,17 +5,17 @@
5
* Oracle database connection name.
6
* ------------------------------------------------------
7
*/
8
- 'connection' => 'oracle',
+ 'connection' => env('SQL_LOADER_CONNECTION', 'oracle'),
9
10
/* ------------------------------------------------------
11
* SQL Loader binary path.
12
13
14
- 'sqlldr' => 'sqlldr',
+ 'sqlldr' => env('SQL_LOADER_PATH', '/usr/local/bin/sqlldr'),
15
16
17
* Disk storage to store control files.
18
19
20
- 'disk' => 'local',
+ 'disk' => env('SQL_LOADER_DISK', 'local'),
21
];
0 commit comments