deleteResponseHeader("content-type")
addResponseHeader("content-type","application/xml")
database.connect("ODBC","products","SYSDBA","masterkey","")
product = database.cursor("select * from products where id = '" + request.id + "'")
product.next()
write(product.name)
write(product.description)
write(product.price);product.close()