我正在使用 WPF (C#) 编写音乐播放器应用程序。作为其功能的一部分,我正在填充一个音乐库,其中我将标题和路径存储到一个 mp3 文件。用户可以为他的音乐库选择一个根文件夹,然后将内容填充到“歌曲”表中。这是我写的代码:
private void Populate_Click(object sender, RoutedEventArgs e)
{
// Folder browser
FolderBrowserDialog dlg = new FolderBrowserDialog();
dlg.ShowDialog();
string DirectoryPath = System.IO.Path.GetDirectoryName(dlg.SelectedPath);
// Get the data directory
string[] A = Directory.GetFiles(DirectoryPath, "*.mp3", SearchOption.AllDirectories);
string[] fName = new string[A.Count()];
// Initialize connection
string connstr = "Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\Database.mdf;Integrated Security=True;User Instance=True";
SqlConnection conn = new SqlConnection(connstr);
conn.Open();
// Create the SqlCommand
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "InsertSongs";
// Create the parameters and execute the command
for (int i = 0; i < A.Count(); i++)
{
fName[i] = System.IO.Path.GetFileName(A[i]);
cmd.Parameters.AddWithValue("@Title", fName[i]);
cmd.Parameters.AddWithValue("@Path", A[i]);
try
{
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
System.Windows.MessageBox.Show("Error: " + ex.Message);
}
finally
{
listBox1.Items.Add(A[i]);
listBox2.Items.Add(fName[i]);
cmd.Parameters.Clear();
}
}
// Close the connection
cmd.Dispose();
conn.Close();
conn.Dispose();
}
存储过程的代码很简单 -
ALTER PROCEDURE dbo.InsertSongs
(
@Title nvarchar(50),
@Path nvarchar(50)
)
AS
INSERT INTO Songs(Title, Path) VALUES(@Title, @Path)
现在,当我执行程序时,没有抛出错误消息(文件名和目录名的大小小于 50)。但是,在执行结束时,不会在 Songs 表中插入任何值。
歌曲表描述如下:
身份证号码 标题 nvarchar(50) 路径 nvarchar(50)
我不确定我哪里出错了:我也尝试过使用 SqlParameter,然后将参数类型定义为大小为 50 的 NVARCHAR,但无济于事。我可以请你在这里帮助我吗?提前谢谢了。