Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/civitaspo/jvertica
https://github.com/civitaspo/jvertica
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/civitaspo/jvertica
- Owner: civitaspo
- License: mit
- Created: 2014-11-19T13:02:26.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-09T03:05:19.000Z (over 8 years ago)
- Last Synced: 2024-10-05T14:34:19.515Z (3 months ago)
- Language: Ruby
- Size: 32.2 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Jvertica
jvertica presents wrapper methods of jdbc-vertica java native methods.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'jvertica'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install jvertica
## Usage
```ruby
require 'jvertica'params = {
host: 'vertica.com',
port: 5433,
user: 'xxxxxx',
password: 'xxxxxx',
}sql = 'select * from sandbox.jdbc_tests;'
c = Jvertica.connect(params)
c.query(sql) do |row|
p row
end
```## Connection Options
see [the url](http://my.vertica.com/docs/7.1.x/HTML/index.htm#Authoring/ProgrammersGuide/ClientJDBC/JDBCConnectionProperties.htm)
## Loading data into Vertica using COPY
```ruby
connection.copy("COPY table FROM STDIN ...") do |stdin|
File.open('data.tsv', 'r') do |f|
begin
stdin << f.gets
end until f.eof?
end
end
```## Contributing
1. Fork it ( https://github.com/[my-github-username]/jvertica/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request