我正在尝试检查Microsoft SQL Server中是否存在表,但不知何故我使用的函数总是返回它不存在,并且输出没有指定抛出异常。
在我创建表(预期)之前以及创建表之后(这是不期望的)都会发生这种情况。
这是我正在使用的功能:
/// <summary>
/// Checks if a certain Sql Server Table exists
/// </summary>
/// <param name="_databasename">The name of the database</param>
/// <param name="_password">The password of the database</param>
/// <param name="_tablename">The name of the table to check</param>
/// <returns>
/// 'true' if table exists
/// 'false' if table not exists or if an exception was thrown
/// </returns>
public Boolean TableExists(String _databasename, String _password, String _tablename)
{
if (!_databasename.Contains(".sdf")) { _databasename = _databasename + ".sdf"; }
try
{
String connectionString = "DataSource=" + _databasename + "; Password=" + _password;
SqlCeConnection conn = new SqlCeConnection(connectionString);
if (conn.State==ConnectionState.Closed) { conn.Open(); }
using (SqlCeCommand command = conn.CreateCommand())
{
command.CommandType = CommandType.Text;
command.CommandText = "SELECT * FROM Information_Schema.Tables WHERE TABLE_NAME = '" + _tablename + "'";
Int32 count = Convert.ToInt32(command.ExecuteScalar());
if (count == 0)
{
Debug.WriteLine("Table " + _tablename + " does not exist.");
return false;
}
else
{
Debug.WriteLine("Table " + _tablename + " exists.");
return true;
}
}
}
catch(Exception _ex)
{
Debug.WriteLine("Failed to determine if table " + _tablename + " exists: " + _ex.Message);
return false;
}
}
这里显然有一些我不知道的东西,但我似乎无法找出那是什么。
答案 0 :(得分:3)
ExecuteScalar返回查询检索到的第一行的第一列 假设您的表确实存在,数据库名称是正确的并且在预期的位置,则返回的行的第一列来自TABLE_CATALOG,一个nvarchar列。
Pheraphs您可以尝试将查询更改为:
command.CommandText = "SELECT COUNT(*) FROM Information_Schema.Tables " +
"WHERE TABLE_NAME = .......";
说,我还是无法解释为什么当你尝试将ExecuteScalar的返回值转换为int时你没有得到异常......