Skip to content

Commit 2d47f90

Browse files
committed
docs: SQL*Loader
1 parent 5638fc7 commit 2d47f90

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Oracle SQL Loader for Laravel
1+
# Oracle SQL*Loader for Laravel
22

33
[![Continuous Integration](https://github.com/yajra/laravel-sql-loader/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/yajra/laravel-sql-loader/actions/workflows/continuous-integration.yml)
44
[![Static Analysis](https://github.com/yajra/laravel-sql-loader/actions/workflows/static-analysis.yml/badge.svg)](https://github.com/yajra/laravel-sql-loader/actions/workflows/static-analysis.yml)
@@ -101,7 +101,7 @@ $loader->options(['skip=1', 'load=1000']);
101101
102102
### Input File(/s)
103103
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.
105105
106106
```php
107107
$loader->inFile(database_path('files/employees.csv'));
@@ -172,7 +172,7 @@ $loader->inFile(database_path('files/users.csv'))
172172
173173
### Connection
174174
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.
176176
177177
```php
178178
$loader->connection('oracle');
@@ -204,7 +204,7 @@ $loader->as('employees.ctl');
204204
205205
### Execute
206206
207-
You can execute the SQL Loader command using the `execute` method.
207+
You can execute the SQL*Loader command using the `execute` method.
208208
209209
```php
210210
$loader->execute();
@@ -264,15 +264,15 @@ php artisan vendor:publish --provider="Yajra\SQLLoader\SQLLoaderServiceProvider"
264264
265265
### Connection Config
266266
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.
268268
269269
```php
270270
'connection' => env('SQL_LOADER_CONNECTION', 'oracle'),
271271
```
272272
273-
### SQL Loader Path Config
273+
### SQL*Loader Path Config
274274
275-
You can set the path to the SQL Loader executable.
275+
You can set the path to the SQL*Loader executable.
276276
277277
```php
278278
'sqlldr' => env('SQL_LOADER_PATH', '/usr/local/bin/sqlldr'),

0 commit comments

Comments
 (0)