0
我正在使用visual studio 2015創建localdb項目。我想存儲網頁信息,包括:PageID,名稱,標題,說明和公開表單。由於標識符太長,無法將值插入到localDB
這裏是我的INSERT語句
insert into dbo.Page(Name, Title, Description, PublicFacing) VALUES ("index", "My Website | Wholesale Prices", "Wholesale Prices, Products, Items, Gadget service provider. Delivering a management platform to ITSPs and resellers. You can get it all here", 1);
當我嘗試運行此聲明,我得到以下錯誤:
The identifier that starts with 'Wholesale Prices, Products, Items, Gadget service provider. Delivering a management platform to ITSPs and resellers. You can get it all here' is too long. Maximum length is 128.
我猜爲什麼我很困惑,我不知道它爲什麼稱這個標識符。這是進入我的數據庫的值,它在我在表中設置的最大varchar限制之下。這是什麼造成的?
是mysql還是SQL Server localdb? – ErikEJ
SQL Server localDB。刪除了mysql標籤。 – onTheInternet
描述是最多170個字符! – ErikEJ