SQL Server Compact Edition에서는 프로그래밍 방식으로 데이터베이스를 만들 때 정수를 어떻게 정의합니까? int
, Int32
, Bigint
을 시도했지만 그 중 아무 것도 작동하지 않습니다. 데이터 유형이 올바르지 않다는 예외가 모두 발생합니다. 이 int
으로도 작동해야하지만알 수없는 데이터 형식을 통해 SQL Server Compact 예외가 throw됩니까?
string createTable6 = "CREATE TABLE Gates (Gate1In Bigint(5), Gate1Out Bigint(5), Gate2In Bigint(5), Gate2Out Bigint(5), Gate3In Bigint(5), Gate3Out Bigint(5), Gate4In Bigint(5), Gate4Out Bigint(5), Gate5In Bigint(5), Gate5Out Bigint(5))";
SqlCeConnection connexion6 = new SqlCeConnection(connectionString);
SqlCeCommand table6 = new SqlCeCommand(createTable6, connexion6);
try
{
connexion6.Open();
table6.ExecuteNonQuery();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
connexion6.Close();