【发布时间】:2014-02-25 14:35:46
【问题描述】:
我正在开发 Windows 8.1 应用程序并使用 AZURE 移动服务进行通信。我需要在 azure 移动服务数据库中有一些数据,当它安装在任何设备上时,这些数据将被转储到应用程序中。所以我尝试使用 azure 管理门户 SQL_database 在数据库中添加记录,但似乎我做不到它给了我错误
"Cannot add a row in the Table Data Editor because one or more columns are required but their SQL types are not supported in Table Data Editor. Use the Transact-SQL Editor to add a row."
这可能是由于 --version 列具有二进制类型。所以我尝试删除此列,但出现以下错误
"The target table 'ShoppingListPro.Category' of the DML statement cannot have any enabled triggers if the statement contains an OUTPUT clause without INTO clause."
我用谷歌搜索了这个问题,发现的是 Link 。
如果可以使用管理门户编辑 azure 移动服务数据库,请指导我,这将使我的生活更轻松,否则我需要编写一个应用程序来将数据馈送到 azure 移动数据库。
谢谢
【问题讨论】:
标签: sql sql-server azure windows-8.1 azure-mobile-services