Class: String

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

Instance Method Summary collapse

Instance Method Details

#htmlObject



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

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

#sqlObject



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

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