Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要一个批处理脚本来删除 SQL Server CE 数据库表中的所有记录。不知道是否可行,我的脚本很弱。
您可以从批处理文件中使用我的 SqlCeCmd/SqlCeCmd40 命令行实用程序,其命令行如下:
sqlcecmd -d "Data Source=C:\mydb.sdf" -q "DELETE * FROM MyTable"
(或 DROP 表并使用 CREATE TABLE 重新创建 - 更快)
从http://sqlcecmd.codeplex.com下载