Class: String

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

Instance Method Summary collapse

Instance Method Details

#htmlObject



859
860
861
# File 'lib/knj/web.rb', line 859

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

#sqlObject



863
864
865
866
867
868
869
870
871
# File 'lib/knj/web.rb', line 863

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