0

ローカルに埋め込まれた SQLite テーブル クラスを使用すると、PrimaryKey、AutoInc、MaxLength(NN)、Indexed などの属性で列を装飾できます。より大きな金属的な WAMS (旧 SQL-Azure) テーブルは、基本的には MS SQL Server テーブルであり、その機能も提供するように思われます。

しかし、WAMS ポータルから可能なことは、選択した列で「インデックスを設定」することだけです。

列を追加の属性 (私が認識していないもの) で装飾することは可能になりましたか、それとも将来的に予定されている機能ですか?

4

1 に答える 1

2

Better late than never. I'm not sure if it's a coming feature or not, however, with the database in SQL Azure (or SQL Database), you can certainly manipulate the underlying table. I'd be cautious in doing so to make sure you don't make breaking changes, but you could certainly add indexes and constraints to a column.

Also, something I've done is make use of stored procedures and functions, and then calling them from the WAMS script.

于 2013-02-11T20:28:40.337 に答える