Skip to content

Commit

Permalink
Clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Apr 22, 2023
1 parent 36e275b commit d4dfa93
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions schemacrawler-website/src/site/markdown/database-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SchemaCrawler is bundled with JDBC drivers for some commonly used relational dat

The JDBC drivers for database systems commonly used with SchemaCrawler are included with the SchemaCrawler download:

- [SQLite](https://www.sqlite.org/) [Xerial SQLite JDBC driver](https://github.com/xerial/sqlite-jdbc)
- [SQLite](https://www.sqlite.org/) [Xerial SQLite JDBC driver](https://github.com/xerial/sqlite-jdbc)
- [Oracle](https://www.oracle.com/) [JDBC driver](https://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html)
- [Microsoft SQL Server](https://www.microsoft.com/sqlserver/) [JDBC driver](https://github.com/Microsoft/mssql-jdbc)
- [IBM DB2](https://www.ibm.com/software/data/db2/) [JDBC driver](https://www.ibm.com/support/pages/db2-jdbc-driver-versions-and-downloads)
Expand All @@ -17,7 +17,7 @@ The JDBC drivers for database systems commonly used with SchemaCrawler are inclu
- Offline database support does not need any JDBC driver

For any other database that includes a compliant JDBC driver, place the JDBC in the
SchemaCrawler `lib` directory. [Amazon Aurora](https://aws.amazon.com/rds/aurora/) is supported
SchemaCrawler `lib` directory. [Amazon Aurora](https://aws.amazon.com/rds/aurora/) is supported
in MySQL and PostgreSQL modes.


Expand Down Expand Up @@ -90,14 +90,14 @@ You can also pass connection properties using the `--urlx` command-line switch.
If your Microsoft SQL Server instance is set up with instance names, named pipes, or Windows authentication, you
will need to use a database connection URL. See the
[documentation for the Microsoft JDBC Driver for SQL Server](https://docs.microsoft.com/sql/connect/jdbc/connecting-to-sql-server-with-the-jdbc-driver)
for details. If you are using the URL version of the command-line, it may be a good idea to include the database name as one of
for details. If you are using the URL version of the command-line, it may be a good idea to include the database name as one of
the connection URL property (`databaseName`).

Typical command-line arguments for connecting to SQL Server with Windows authentication will look like:

```
--server=sqlserver \
--url=<url> \
--url=jdbc:sqlserver://db.example.com:1433;databaseName=master;encrypt=false \
--schemas=schemacrawler.dbo \
--user= \
--password= \
Expand Down Expand Up @@ -130,7 +130,7 @@ are interested in, for Oracle.

You can use a query similar to `SELECT GLOBAL_NAME FROM GLOBAL_NAME`
to find the Oracle Service Name.

Typical command-line arguments will look like:

```
Expand Down
8 changes: 4 additions & 4 deletions schemacrawler-website/src/site/markdown/docker-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ connect --server=sqlite --database=sc.db
load --info-level=minimum
execute --command list
```
The easiest way to learn how to use the SchemaCrawler Interactive Shell is by doing the
[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler-shell). The tutorial works from within
The easiest way to learn how to use the SchemaCrawler Interactive Shell is by doing the
[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler-shell). The tutorial works from within
any browser with no software or plugins needed.


Expand All @@ -49,8 +49,8 @@ schemacrawler \
--info-level=maximum --command=schema
```

The easiest way to learn how to use the SchemaCrawler command-line is by doing the
[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler). The tutorial works from within
The easiest way to learn how to use the SchemaCrawler command-line is by doing the
[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler). The tutorial works from within
any browser with no software or plugins needed.


Expand Down

0 comments on commit d4dfa93

Please sign in to comment.