public static bool TruncateTable(string dbAlias, string tableName) { string sqlStatement = string.Format(\"TRUNCATE TABLE {0}\", tableName); return ExecuteNo
Use parameterized queries.