Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - M-Business Anywhere Programming » UltraLite for M-Business Anywhere API Reference » ULTable class

 setBytes method Next Page

setDate method


Sets the value for the specified column using a Date.

Syntax

setDate( UInt16 columnID, Date value)

Parameters
Remarks

The data in the row is not actually changed until you execute an insert or update, and that change is not permanent until it is committed.

Example

The following statement sets the value of the first column to 2004/09/27:

t.setDate( 
  1, new Date( 2002,9,27,0,0,0,0 ) 
);