Skip to content

Releases: felipenoris/Oracle.jl

Release v0.1.1

31 Jul 21:28
Compare
Choose a tag to compare
  • Allow Oracle.execute_many to handle input and output variables

Release v0.1.0

29 Feb 23:36
Compare
Choose a tag to compare
  • Drop support for Julia v0.6 and v0.7.

  • Accept AbstractString for API arguments (#9).

  • Remove depwarns from previous release iteration.

Release v0.0.6

09 Mar 23:18
Compare
Choose a tag to compare

Breaking Changes

  • The following methods have been renamed:
Old Name New Name
num_columns ncol
num_rows nrow
bind_value! bind!
bind_variable! bind!
execute! execute
close! close
commit! commit
rollback! rollback
fetch! fetch
fetch_row! fetchrow
fetch_rows! fetchrows
  • Variables and OracleValues are now 1-index-based.

Bugfixes

  • Avoid binding RAW data directly to statement.

  • remove Cursor reference from ResultSetRow .

Enhancements

  • Introducing ResultSet , which contains a vector of ResultSetRows.

  • read/write OraNumber to variable, to preserve numeric precision (experimental).

Release v0.0.5

12 Feb 02:50
Compare
Choose a tag to compare
  • Support reading RAW data type.

  • Write to LOB

  • Fix reference counting to LOB variables that could cause a segfault

  • bump ODPI-C to v3.1.1

  • introducing Timestamp and TimestampTZ to parse oracle's timestamp columns without data loss

  • Oracle.execute_script!(conn, filepath) to execute a script file

  • Oracle.fetch_row!(stmt) method to fetch one row at a time

Release v0.0.4

03 Feb 20:20
Compare
Choose a tag to compare
  • Support Session Pools.

  • Support reading from LOB fields.

  • Support ASCII or UTF-8 encodings

Release v0.0.3

25 Jan 19:42
Compare
Choose a tag to compare
  • Bump ODPI-C to v3.1.0.

  • New method for Oracle.execute! using ODPI-C executeMany feature for statement execution in batch mode.

  • Using only UTF-8 encoding for connections

Release v0.0.2

20 Jan 15:52
Compare
Choose a tag to compare

Stmt, execute and Cursor overhaul. Safe query API.

Release v0.0.1

17 Jan 01:40
Compare
Choose a tag to compare

Initial release.