Guest User

Untitled

a guest
Dec 26th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. require 'active_record'
  2.  
  3. ActiveRecord::Base.establish_connection(
  4. adapter: "oracle_enhanced",
  5. database: "",
  6. username: "",
  7. password: ""
  8. )
  9.  
  10. class Documento < ActiveRecord::Base
  11. self.table_name = 'DOCUMENTO'
  12. end
  13.  
  14. a = File.open("./xml.zip")
  15. Documento.create({:arquivo => a.read})
Add Comment
Please, Sign In to add comment