Class: String

Inherits:
Object show all
Defined in:
lib/knj/web.rb

Instance Method Summary collapse

Instance Method Details

#htmlObject



844
845
846
# File 'lib/knj/web.rb', line 844

def html
  return Knj::Web.html(self)
end

#sqlObject



848
849
850
851
852
853
854
855
856
# File 'lib/knj/web.rb', line 848

def sql
  begin
    return _db.escape(self)
  rescue NameError
    #ignore - not i KnjAppServer HTTP-session.
  end
  
  raise "Could not figure out where to find db object."
end