Connect to MySql
=begin
create database Contact;
use Contact;
CREATE TABLE Employee (
Name VARCHAR(50),
Phone VARCHAR(15)
);
=end
require "rubygems"
require "activerecord"
ActiveRecord::Base.establish_connection(
:adapter => "mysql",
:host => "localhost",
:username => "root",
:database => "Contact")
class Employee < ActiveRecord::Base
set_table_name "employee"
end
account = Employee.new
account.Name = "AAA"
account.save
Related examples in the same category