Package com.nt.udc.db

Interface DBRecordIfc


public interface DBRecordIfc
Title: Database Record interface Description: A simple interface that defines the persist method which is expected to be present for any object that wants to be written to the database. The persist method should return a string Copyright: Copyright (c) 2001 Company: Nortel Networks
  • Method Summary

    Modifier and Type
    Method
    Description
    This method should provide the SQL necessary to insert or update a DBRecordIfc implementation into a database.
  • Method Details

    • persist

      String persist() throws UDCSQLException
      This method should provide the SQL necessary to insert or update a DBRecordIfc implementation into a database.
      Returns:
      The return should be an SQL DDL statement for doing an insert or an update.
      Throws:
      UDCSQLException