Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SQL Server 2005 和 2008 并尝试将各种不同的 XML 文件导入到我的数据库中,有时 XML 无效。每个 XML 文件都与上一个不同。
有什么方法可以创建一个返回 0 或 1 的函数,具体取决于 XML 是否有效?
试试这个:
try { XDocument xdfile = new XDocument(); xdfile = XDocument.Load(your_filepath); } catch (XmlException exception) { ShowMessage("Invalid"); }
SQL 服务器:参考下面的链接