G
Guest
I am hitting an AIX UDB 7 Database, and the problem I am having is that I am
not receiving what columns are the primary keys. I was previously hitting a
Mainframe DB2 database and it was working. Any clues.
I am trying to run these commands to retrieve the primary keys.
Dim keys() As DataColumn
keys = MainDataTable.PrimaryKey
For Each k As DataColumn In keys
Debug.WriteLine(k.ToString)
Debug.WriteLine("Unique: " & k.Unique)
Next
Does anybody know if it is a UDB setting that needs to be configured. BTW,
I have tried connecting with both ODBC and OleDB. Thanks!
not receiving what columns are the primary keys. I was previously hitting a
Mainframe DB2 database and it was working. Any clues.
I am trying to run these commands to retrieve the primary keys.
Dim keys() As DataColumn
keys = MainDataTable.PrimaryKey
For Each k As DataColumn In keys
Debug.WriteLine(k.ToString)
Debug.WriteLine("Unique: " & k.Unique)
Next
Does anybody know if it is a UDB setting that needs to be configured. BTW,
I have tried connecting with both ODBC and OleDB. Thanks!