0

How to work with SQL Server CLR User-Defined Types in old good C++ unmanaged code via OLEDB? Also, how to work with Large User-Defined Types?

What are these types in OLEDB? How to interpret them?

Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
ZedZip
  • 5,794
  • 15
  • 66
  • 119

1 Answers1

1

Use the SQL Server Native Client OLE DB provider and specify DBTYPE_UDT. See http://msdn.microsoft.com/en-us/library/bb677199.aspx for more information and examples.

Dan Guzman
  • 43,250
  • 3
  • 46
  • 71