Sha256: 86c43e847c23105cda7ff7349733e163859eb45e87b276499a1ac48cb9e9c268
Contents?: true
Size: 1.58 KB
Versions: 5
Compression:
Stored size: 1.58 KB
Contents
# activerecord-cubrid2-adapter Cubrid database connector for ruby, and active_record, depends on 'cubrid' gem DESCRIPTION ----------- Cubrid2 ActiveRecord adapter privides Cubrid database from Ruby on Rails applications. Now works with Ruby on Rails 6.0, 7.0 and it is working with Cubrid database versions 9.x to higher. INSTALLATION ------------ ```ruby # Use cubrid as the database for Active Record gem 'cubrid' # cubrid interface gem, based on native CCI C interface # OR use local build # git clone https://github.com/CUBRID/cubrid-ruby.git /opt/cubrid/cubrid-ruby # cd /opt/cubrid/cubrid-ruby # # goto directory and build cubrid-ruby # gem 'cubrid', path: '/opt/cubrid/cubrid-ruby' gem 'activerecord-cubrid2-adapter' ``` Currently Rails Windows, JRuby is not tested. ### Without Rails and Bundler If you want to use ActiveRecord and Cubrid2 adapter without Rails and Bundler then install it just as a gem: ```bash gem install activerecord-cubrid2-adapter ``` ### Database connection In Rails application `config/database.yml` use 'cubrid2' as adapter name, e.g. ```yml development: adapter: cubrid2 host: localhost database: testdb username: user password: secret ``` EXAMPLE ----- Check test_activerecord.rb in the tests directory. BUILDING GEM ----- ```bash gem install rake-compiler rake build # OR gem build activerecord-cubrid2-adapter.gemspec ``` LINKS ----- * Active Record – Object-relational mapping in Rails: https://github.com/rails/rails/tree/main/activerecord * Cubrid Ruby GEM: https://github.com/CUBRID/cubrid-ruby * Cubrid Homepage: https://www.cubrid.org
Version data entries
5 entries across 5 versions & 1 rubygems