File tree Expand file tree Collapse file tree 7 files changed +43
-21
lines changed
docs/StardustDocs/topics/dataSources/sql Expand file tree Collapse file tree 7 files changed +43
-21
lines changed Original file line number Diff line number Diff 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+
5457See [ ] ( readSqlDatabases.md ) for more details.
5558
5659``` kotlin
Original file line number Diff line number Diff 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+
5457See [ ] ( readSqlDatabases.md ) for more details.
5558
5659``` kotlin
Original file line number Diff line number Diff 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+
5659See [ ] ( readSqlDatabases.md ) for more details.
5760
5861``` kotlin
Original file line number Diff line number Diff 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+
5457See [ ] ( readSqlDatabases.md ) for more details.
5558
5659``` kotlin
Original file line number Diff line number Diff 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+
5457See [ ] ( readSqlDatabases.md ) for more details.
5558
5659``` kotlin
Original file line number Diff line number Diff 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+
4145See [ ] ( readSqlDatabases.md ) for more details.
Original file line number Diff line number Diff 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+
5457See [ ] ( readSqlDatabases.md ) for more details.
5558
5659``` kotlin
You can’t perform that action at this time.
0 commit comments