# File lib/dbd_oracle/Oracle.rb, line 115
  def tables
    stmt = execute("SELECT table_name FROM user_tables")  
    rows = stmt.fetch_all || []
    stmt.finish
    rows.collect {|row| row[0]} 
  end