GithubHelp home page GithubHelp logo

dosire / dbf Goto Github PK

View Code? Open in Web Editor NEW

This project forked from infused/dbf

2.0 3.0 0.0 414 KB

DBF is a small fast Ruby library for reading dBase, xBase, Clipper and FoxPro database files

Home Page: http://dbf.rubyforge.org

Ruby 100.00%

dbf's Introduction

DBF

DBF is a small fast library for reading dBase, xBase, Clipper and FoxPro database files

Features

  • No external dependencies
  • Fields are type cast to the appropriate Ruby types
  • Ability to dump the database schema in the portable ActiveRecord::Schema format

Installation

gem install dbf

Basic Usage

require 'rubygems'
require 'dbf'

table = DBF::Table.new("widgets.dbf")

# Tables are enumerable
widget_ids = table.map { |row| row.id }
abc_names = table.select { |row| row.name =~ /^[a-cA-C]/ }
sorted = table.sort_by { |row| row.name }

# Print the 'name' field from record number 4
puts table.record(4).name

# Attributes can also be accessed using the column name as a Hash key
puts table.record(4).attributes["name"]

# Print the 'name' and 'address' fields from each record
table.records.each do |record|
  puts record.name
  puts record.email
end

# Find records
table.find :all, :first_name => 'Keith'
table.find :all, :first_name => 'Keith', :last_name => 'Morrison'
table.find :first, :first_name => 'Keith'
table.find(10)

Migrating to ActiveRecord

An example of migrating a DBF book table to ActiveRecord using a migration:

require 'dbf'

class CreateBooks < ActiveRecord::Migration
  def self.up
    table = DBF::Table.new('db/dbf/books.dbf')
    eval(table.schema)

    table.records.each do |record|
      Book.create(record.attributes)
    end
  end

  def self.down
    drop_table :books
  end
end

Command-line utility

A small command-line utility called dbf is installed along with the gem.

$ dbf -h
usage: dbf [-h|-s|-a] filename
  -h = print this message
  -s = print summary information
  -a = create an ActiveRecord::Schema

Limitations and known bugs

  • DBF is read-only
  • Index files are not used

License

(The MIT Licence)

Copyright (c) 2006-2009 Keith Morrison mailto:[email protected], http://www.infused.org

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

dbf's People

Contributors

dosire avatar elia avatar infused avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.