sql - Data Type Mapping -
I need to store XML data in the database (MS SQL Server).
I have to know the exact datatype for the text. I have tried with an adolver but it does not work. Also I tried with adLongVarWChar (nText) but both are not working.
Need help
Thank you.
If you are using SQL Server 2005 or higher then you can go to the XML data type . Read more about this
In addition to this, avoid using ntext and text data types, as they will be removed from future versions of SQL Server. Instead, go to nvarchar (max) or varchar (max) Read on this
Cheers
Comments
Post a Comment