|
1 | | -# Oracle SQL Loader for Laravel |
| 1 | +# Oracle SQL*Loader for Laravel |
2 | 2 |
|
3 | 3 | [](https://github.com/yajra/laravel-sql-loader/actions/workflows/continuous-integration.yml) |
4 | 4 | [](https://github.com/yajra/laravel-sql-loader/actions/workflows/static-analysis.yml) |
@@ -101,7 +101,7 @@ $loader->options(['skip=1', 'load=1000']); |
101 | 101 |
|
102 | 102 | ### Input File(/s) |
103 | 103 |
|
104 | | -You can set the input file to use for the SQL Loader command using the `inFile` method. |
| 104 | +You can set the input file to use for the SQL*Loader command using the `inFile` method. |
105 | 105 |
|
106 | 106 | ```php |
107 | 107 | $loader->inFile(database_path('files/employees.csv')); |
@@ -172,7 +172,7 @@ $loader->inFile(database_path('files/users.csv')) |
172 | 172 |
|
173 | 173 | ### Connection |
174 | 174 |
|
175 | | -You can set the connection name to use for the SQL Loader command using the `connection` method. |
| 175 | +You can set the connection name to use for the SQL*Loader command using the `connection` method. |
176 | 176 |
|
177 | 177 | ```php |
178 | 178 | $loader->connection('oracle'); |
@@ -204,7 +204,7 @@ $loader->as('employees.ctl'); |
204 | 204 |
|
205 | 205 | ### Execute |
206 | 206 |
|
207 | | -You can execute the SQL Loader command using the `execute` method. |
| 207 | +You can execute the SQL*Loader command using the `execute` method. |
208 | 208 |
|
209 | 209 | ```php |
210 | 210 | $loader->execute(); |
@@ -264,15 +264,15 @@ php artisan vendor:publish --provider="Yajra\SQLLoader\SQLLoaderServiceProvider" |
264 | 264 |
|
265 | 265 | ### Connection Config |
266 | 266 |
|
267 | | -You can set the connection name to use for the SQL Loader command. |
| 267 | +You can set the connection name to use for the SQL*Loader command. |
268 | 268 |
|
269 | 269 | ```php |
270 | 270 | 'connection' => env('SQL_LOADER_CONNECTION', 'oracle'), |
271 | 271 | ``` |
272 | 272 |
|
273 | | -### SQL Loader Path Config |
| 273 | +### SQL*Loader Path Config |
274 | 274 |
|
275 | | -You can set the path to the SQL Loader executable. |
| 275 | +You can set the path to the SQL*Loader executable. |
276 | 276 |
|
277 | 277 | ```php |
278 | 278 | 'sqlldr' => env('SQL_LOADER_PATH', '/usr/local/bin/sqlldr'), |
|
0 commit comments