No release in over 3 years
Low commit activity in last 3 years
Adds oracle adapter to Fx gem to enable database migrations and schema to work with functions and triggers on applications using oracle as database
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 6.0.0
>= 6.0.0
 Project Readme

F(x) Oracle Adapter

An Oracle adapter for fx gem

Features

This adapter makes possible to use oracle database functions with active record migrations and schema dump for those functions.

It is not possible for now to use this adapter for oracle database triggers.

Installation

Add this line to gemfile

gem 'fx-oracle-adapter'

And then execute

bundle

After that, you will need to tell F(x) to use this adapter in an initializer:

# config/initializer/fx.rb

Fx.configure do |config|
  config.adapter = Fx::Adapters::Oracle.new
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/zygotecnologia/fx-oracle-adapter. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

TODO:

  • Adds tests using dummy application
  • Adds Oracle trigger compatibility