Skip to content

Commit 28cb829

Browse files
committed
updated README
1 parent 663e912 commit 28cb829

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
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.
77

88
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).
1010

1111
This package currently supports only Julia v0.6 and later.
1212

@@ -121,13 +121,13 @@ end
121121
close(csr) # closes Connection, can be called on Connection or Cursor
122122
```
123123

124-
#### `DataStreams` Interface and Creating `DataFrame`s
124+
#### `Tables` Interface and Creating `DataFrame`s
125125

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`.
129129

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
131131
provide also the convenient `JDBC.load` function.
132132

133133
For example, you can do

0 commit comments

Comments
 (0)