You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
This package enables the use of Java JDBC drivers to access databases from within Julia. It uses the [JavaCall.jl](https://github.com/aviks/JavaCall.jl) package to call into Java in order to use the JDBC drivers.
7
7
8
8
The API provided by this package consists essentially of two components: a "direct" (i.e. minimally wrapped) interface directly to Java JDBC and a minimal
9
-
Julian interface with support for [DataStreams.jl](https://github.com/JuliaData/DataStreams.jl).
9
+
Julian interface with support for [Tables.jl](https://github.com/JuliaData/Tables.jl).
10
10
11
11
This package currently supports only Julia v0.6 and later.
12
12
@@ -121,13 +121,13 @@ end
121
121
close(csr) # closes Connection, can be called on Connection or Cursor
122
122
```
123
123
124
-
#### `DataStreams` Interface and Creating `DataFrame`s
124
+
#### `Tables` Interface and Creating `DataFrame`s
125
125
126
-
JDBC includes a [DataStreams](https://github.com/JuliaData/DataStreams.jl) interface. A DataStreams `Source` object can be created from a `JDBC.Cursor` or a
127
-
`JDBCRowIterator` simply by doing e.g. `JDBC.Source(csr)`. This object implements the DataStreams `Data.Source` interface. It can be useful for retrieving metadata
128
-
with `Data.schema`.
126
+
JDBC includes a [Tables](https://github.com/JuliaData/Tables.jl) interface. A Tables
127
+
`Source` object can be created from a `JDBC.Cursor` or a `JDBCRowIterator` simply by doing
128
+
e.g. `JDBC.Source(csr)`. It can be useful for retrieving metadata with `Tables.schema`.
129
129
130
-
This is also useful for loading data from a database into an object that implements the DataStreams `Data.Sink`interface such as a `DataFrame`. For this we
130
+
This is also useful for loading data from a database into another object that implements the Tables interface. For this we
0 commit comments