我正在使用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表中没有插入任何值。
歌曲表格描述如下:
ID int Title nvarchar(50) Path nvarchar(50)
我不确定我哪里出错:我还尝试使用SqlParameter然后将参数类型定义为大小为50的NVARCHAR,但无济于事。我可以请你帮助我吗?非常感谢提前。
答案 0 :(得分:2)
整个用户实例和AttachDbFileName=
方法存在缺陷 - 充其量! Visual Studio将围绕.mdf
文件和最有可能进行复制,您的INSERT
工作正常 - 但您只是查看错误的.mdf文件< / strong>到底!
如果你想坚持这种方法,那么尝试在myConnection.Close()
调用上设置一个断点 - 然后用SQL Server Mgmt Studio Express检查.mdf
文件 - 我几乎可以肯定你的数据在那里。
我认为真正的解决方案将是
安装SQL Server Express(你已经完成了)
安装SQL Server Management Studio Express
在 SSMS Express 中创建数据库,为其指定一个逻辑名称(例如SongsDatabase
)
使用其逻辑数据库名称(在服务器上创建时给定)连接到它 - 并且不要乱用物理数据库文件和用户实例。在这种情况下,您的连接字符串将类似于:
Data Source=.\\SQLEXPRESS;Database=SongsDatabase;Integrated Security=True
其他所有内容都完全与以前相同......