UL Ext: Performs validation on the current database.
Public Sub ValidateDatabase( ByVal how As ULDBValid, ByVal tableName As String )
public void ValidateDatabase(ULDBValid how, string tableName)
how Describes how to validate the database.
tableName If null (Nothing in Visual Basic), validate the entire database; otherwise, validate just the named table.
ULException class A SQL error occurred.
The following code validates the current database
' Visual Basic conn.ValidateDatabase( iAnywhere.Data.UltraLite.ULVF_INDEX, Nothing )
The following code is the C# language equivalent:
// C# conn.ValidateDatabase( iAnywhere.Data.UltraLite.ULVF_INDEX, null )