Class: String

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

Instance Method Summary collapse

Instance Method Details

#htmlObject



899
900
901
# File 'lib/knj/web.rb', line 899

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

#sqlObject



903
904
905
906
907
908
909
910
911
# File 'lib/knj/web.rb', line 903

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