New Object() {Nothing, Nothing, Nothing, myType} <-- what does this mean?

  • Thread starter Thread starter adhadi
  • Start date Start date
A

adhadi

Hi, can anybody explain what is the "New Object() ......" needed for? i
couldnt figure out.

schema1 = cnn1.GetOleDbSchemaTable(New OleDb.OleDbSchemaGuid().Tables, New
Object() {Nothing, Nothing, Nothing, myType})

Best Regards


Adi
 
Hi,

thats an object array of restrictions that you might need to impose while
fetching the rows. Passing an all null values for the parameters means all
rows to be returned.

HTH
Regards
Joyjit
 
Back
Top