J'ai écrit une fonction qui crée des tables dans MS SQL Server Express 2014. La voici :
private static void createAndAlterTables()
{
try
{
// Создать соединение с БД.
using (SqlConnection sqlCon = new SqlConnection(ConfigurationManager.ConnectionStrings["sqlConnection"].ConnectionString))
{
try
{
SqlCommand sqlCom = new SqlCommand();
sqlCom.Connection = sqlCon;
sqlCon.Open();
MessageBox.Show("Выполняется создание таблиц", "Сообщение", MessageBoxButton.OK, MessageBoxImage.Information);
sqlCom.CommandText = @"CREATE TABLE [dbo].[AddedDevices](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[ProfileId] [uniqueidentifier] NULL,
[MountingLocation] [nvarchar](max) NULL,
[DeviceName] [nvarchar](50) NULL,
[SerialNumber] [nvarchar](50) NULL,
[DeviceDescription] [nvarchar](max) NULL,
[OwnerCompany] [nvarchar](50) NULL,
[StreetHouse] [nvarchar](max) NULL,
[LocalityRegion] [nvarchar](max) NULL,
[Country] [nvarchar](50) NULL,
[ZipCode] [nvarchar](50) NULL,
[SwHwVersion] [nvarchar](50) NULL,
[DeviceType] [nvarchar](50) NULL,
[SelectedInnerDiameter] [nvarchar](50) NULL,
[SelectedBeamsQuantity] [nvarchar](50) NULL,
[SelectedExClass] [nvarchar](50) NULL,
[PathToStorageFolder] [nvarchar](max) NULL,
CONSTRAINT [PK_AddedDevices] PRIMARY KEY CLUSTERED (
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]";
sqlCom.ExecuteNonQuery();
MessageBox.Show("Таблица 'AddedDevices' успешно создана", "Сообщение", MessageBoxButton.OK, MessageBoxImage.Information);
//
sqlCom.CommandText = @"ALTER TABLE [dbo].[AddedDevices] ADD CONSTRAINT [DF_AddedDevices_Id] DEFAULT (newid()) FOR [Id]";
sqlCom.ExecuteNonQuery();
MessageBox.Show("Таблица 'AddedDevices' успешно изменена", "Сообщение", MessageBoxButton.OK, MessageBoxImage.Information);
//
sqlCom.CommandText = @"CREATE TABLE [dbo].[DeviceProfile](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[DeviceName] [nvarchar](100) NULL,
[Brand] [nvarchar](50) NULL,
[DisplayedName] [nvarchar](200) NULL,
[RepositoryFileName] [nvarchar](200) NULL,
[RegistersQuantity] [int] NULL,
[DeviceTypeCode] [int] NULL,
[SerialNumber] [nvarchar](100) NULL,
CONSTRAINT [PK_DeviceProfile_Id] PRIMARY KEY CLUSTERED (
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
) ON [PRIMARY]";
sqlCom.ExecuteNonQuery();
MessageBox.Show("Таблица 'DeviceProfile' успешно создана", "Сообщение", MessageBoxButton.OK, MessageBoxImage.Information);
//
sqlCom.CommandText = @"ALTER TABLE [dbo].[DeviceProfile] ADD CONSTRAINT [DF_DeviceProfile_Id] DEFAULT (newid()) FOR [Id]";
sqlCom.ExecuteNonQuery();
MessageBox.Show("Таблица 'DeviceProfile' успешно изменена", "Сообщение", MessageBoxButton.OK, MessageBoxImage.Information);
}
catch (Exception ex)
{
if (ex.InnerException != null)
MessageBox.Show(ex.InnerException.Message, "Ошибка при создании таблиц", MessageBoxButton.OK, MessageBoxImage.Error);
else
MessageBox.Show(ex.Message, "Ошибка при создании таблиц", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}
catch (Exception ex)
{
// Если сбой транзакции:
if (ex.InnerException != null)
MessageBox.Show(ex.InnerException.Message, "Ошибка при создании таблиц", MessageBoxButton.OK, MessageBoxImage.Error);
else
MessageBox.Show(ex.Message, "Ошибка при создании таблиц", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
Lorsque je me connecte à MS SQL Server Express 2014 et que j'essaie de créer une table, le résultat est positif. Mais lorsque je me connecte à MS SQL Server Express LocalDB installé à partir du prérequis dans InstallShield 2016 Premier (essai de 21 jours), les tables ne sont pas créées. Y a-t-il une raison dans le type de SQL Server (Express et Express LocalDB) ? Ou je fais quelque chose de mal dans mon code. Votre aide sera très appréciée.