DB2®ConnectionStringBuilder.TableType Property

Gets or sets the value of the TableType keyword.

Namespace:
IBM.Data.DB2
Assembly:
IBM.Data.DB2 (in IBM.Data.DB2.dll)

Syntax


[Visual Basic]
Public Property TableType As String
[C#]
public string TableType {get; set;}
[C++]
public: __property String* get_TableType();
public: __property void set_TableType(String*);
[JScript]
public function get TableType() : String;
public function set TableType(String);

Property value

A string representing the list of table types.

Valid table types to include in the list are:
  • TABLE,
  • ALIAS,
  • VIEW,
  • INOPERATIVE VIEW,
  • SYSTEM TABLE,
  • SYNONYM.

Any number of the values can be specified. Each type must be delimited with single quotation marks, separated by commas, and in uppercase.

Remarks

If TableType includes any value other than TABLE, then the DBName keyword setting cannot be used to restrict information to a particular Db2® for z/OS® database.

Example

TableType = "'TABLE','VIEW'"