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
48
48
49
49
## Read
50
50
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
+
54
57
See [ ] ( readSqlDatabases.md ) for more details.
55
58
56
59
``` kotlin
Original file line number Diff line number Diff line change @@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
48
48
49
49
## Read
50
50
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
+
54
57
See [ ] ( readSqlDatabases.md ) for more details.
55
58
56
59
``` kotlin
Original file line number Diff line number Diff line change @@ -50,9 +50,12 @@ The actual Maven Central driver version could be found
50
50
51
51
## Read
52
52
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
+
56
59
See [ ] ( readSqlDatabases.md ) for more details.
57
60
58
61
``` kotlin
Original file line number Diff line number Diff line change @@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
48
48
49
49
## Read
50
50
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
+
54
57
See [ ] ( readSqlDatabases.md ) for more details.
55
58
56
59
``` kotlin
Original file line number Diff line number Diff line change @@ -48,9 +48,12 @@ The actual Maven Central driver version could be found
48
48
49
49
## Read
50
50
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
+
54
57
See [ ] ( readSqlDatabases.md ) for more details.
55
58
56
59
``` kotlin
Original file line number Diff line number Diff line change @@ -35,7 +35,11 @@ to work with any other JDBC-compatible database.
35
35
36
36
## Read
37
37
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
+
41
45
See [ ] ( 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
48
48
49
49
## Read
50
50
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
+
54
57
See [ ] ( readSqlDatabases.md ) for more details.
55
58
56
59
``` kotlin
You can’t perform that action at this time.
0 commit comments