package com.ericfeminella.sql
{
import flash.events.SQLEvent;
/**
*
* Defines the contract for classes which must provide an API
* which handles <code>SQLEvent</code> objects dispatched via
* a <code>SQLStatement</code> instance which have executed
* successfully
*
*/
public interface ISQLStatementResponder
{
/**
*
* Handles a <code>SQLEvent</code> of type <code>RESULT</code>
* which is dispatched when a S<code>QLStatement.execute()</code>
* or <code>SQLStatement.next()</code> method call completes
* successfully
*
* @param <code>SQLEvent</code> instance which was dispatched
*
*/
function result(event:SQLEvent) : void;
/**
*
* Handles a <code>SQLEvent</code> of type <code>PREPARE</code>
* which is dispatched when a <code>SQLStatement.prepare()</code>
* method call completes successfully
*
* @param <code>SQLEvent</code> instance which was dispatched
*
*/
function prepare(event:SQLEvent) : void;
/**
*
* Handles a <code>SQLEvent</code> of type <code>RESET</code> which
* is dispatched when a <code>SQLStatement.reset()</code> method call
* completes successfully
*
* @param <code>SQLEvent</code> instance which was dispatched
*
*/
function reset(event:SQLEvent) : void;
}
}