Skip to content

Commit 8527515

Browse files
read from sql description
1 parent d365821 commit 8527515

File tree

7 files changed

+43
-21
lines changed

7 files changed

+43
-21
lines changed

docs/StardustDocs/topics/dataSources/sql/H2.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
4848

4949
## Read
5050

51-
[`DataFrame`](DataFrame.md) can be loaded from a H2 database using various methods:
52-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
53-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
51+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
52+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
53+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
54+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
55+
It is also possible to load all data from non-system tables, each into a separate `DataFrame` ([`readAllSqlTables`](readSqlDatabases.md)).
56+
5457
See [](readSqlDatabases.md) for more details.
5558

5659
```kotlin

docs/StardustDocs/topics/dataSources/sql/MariaDB.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
4848

4949
## Read
5050

51-
[`DataFrame`](DataFrame.md) can be loaded from a MariaDB database using various methods:
52-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
53-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
51+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
52+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
53+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
54+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
55+
It is also possible to load all data from non-system tables, each into a separate `DataFrame` ([`readAllSqlTables`](readSqlDatabases.md)).
56+
5457
See [](readSqlDatabases.md) for more details.
5558

5659
```kotlin

docs/StardustDocs/topics/dataSources/sql/Microsoft-SQL-Server.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,12 @@ The actual Maven Central driver version could be found
5050

5151
## Read
5252

53-
[`DataFrame`](DataFrame.md) can be loaded from an MS SQL database using various methods:
54-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
55-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
53+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
54+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
55+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
56+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
57+
It is also possible to load all data from non-system tables, each into a separate `DataFrame` ([`readAllSqlTables`](readSqlDatabases.md)).
58+
5659
See [](readSqlDatabases.md) for more details.
5760

5861
```kotlin

docs/StardustDocs/topics/dataSources/sql/MySQL.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
4848

4949
## Read
5050

51-
[`DataFrame`](DataFrame.md) can be loaded from an MySQL database using various methods:
52-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
53-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
51+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
52+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
53+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
54+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
55+
It is also possible to load all data from non-system tables, each into a separate `DataFrame` ([`readAllSqlTables`](readSqlDatabases.md)).
56+
5457
See [](readSqlDatabases.md) for more details.
5558

5659
```kotlin

docs/StardustDocs/topics/dataSources/sql/PostgreSQL.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
4848

4949
## Read
5050

51-
[`DataFrame`](DataFrame.md) can be loaded from a PostgreSQL database using various methods:
52-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
53-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
51+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
52+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
53+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
54+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
55+
It is also possible to load all data from non-system tables, each into a separate `DataFrame` ([`readAllSqlTables`](readSqlDatabases.md)).
56+
5457
See [](readSqlDatabases.md) for more details.
5558

5659
```kotlin

docs/StardustDocs/topics/dataSources/sql/SQL.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ to work with any other JDBC-compatible database.
3535

3636
## Read
3737

38-
[`DataFrame`](DataFrame.md) can be loaded from a database using various methods:
39-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
40-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
38+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
39+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
40+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
41+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
42+
It is also possible to load all data from non-system tables, each into a separate `DataFrame`
43+
([`readAllSqlTables`](readSqlDatabases.md)).
44+
4145
See [](readSqlDatabases.md) for more details.

docs/StardustDocs/topics/dataSources/sql/SQLite.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
4848

4949
## Read
5050

51-
[`DataFrame`](DataFrame.md) can be loaded from an SQLite database using various methods:
52-
[`readSqlTable`](readSqlDatabases.md), [`readSqlQuery`](readSqlDatabases.md),
53-
[`readResultSet`](readSqlDatabases.md), and [`readAllSqlTables`](readSqlDatabases.md).
51+
[`DataFrame`](DataFrame.md) can be loaded from a database in several ways:
52+
a user can read data from a SQL table by given name ([`readSqlTable`](readSqlDatabases.md)),
53+
as a result of a user-defined SQL query ([`readSqlQuery`](readSqlDatabases.md)),
54+
or from a given `ResultSet` ([`readResultSet`](readSqlDatabases.md)).
55+
It is also possible to load all data from non-system tables, each into a separate `DataFrame` ([`readAllSqlTables`](readSqlDatabases.md)).
56+
5457
See [](readSqlDatabases.md) for more details.
5558

5659
```kotlin

0 commit comments

Comments
 (0)