我的联系:
Public con As sqliteConnection = New sqliteConnection("Data Source=trancebeats.s3db")
并在表单加载时打开连接
插入新值:
Public Sub InsertNewCatSub() prUpdate.Value = 0 prUpdate.Maximum = 1 lblUpdateResults.Text = prUpdate.Value & " of " & prUpdate.Maximum & " Checked" lblUpdateResults.ForeColor = Color.Red TotUpd = 0 TotNew = 0 Dim filename1 = Path.GetFileNameWithoutExtension(NewCat) Dim filename2 = filename1.Replace("[","") Dim filename3 = filename2.Replace("]","") Dim filename4 = Path.GetDirectoryName(NewCat) If con.State = ConnectionState.Closed Then con.open() End If Dim Querytxt As String = "Select * from trancebeats Where Cat = '" & filename3 & "' Group By Cat" Dim Adp As sqliteDataAdapter = New sqliteDataAdapter Dim Cmd As sqliteCommand = New sqliteCommand Dim TableNewCat As New DataTable TableNewCat.Rows.Clear() Dim i As Integer With Cmd .CommandText = Querytxt .Connection = con End With With Adp .SelectCommand = Cmd .Fill(TableNewCat) End With If TableNewCat.Rows.Count > 0 Then For i = 0 To TableNewCat.Rows.Count - 1 If filename3 = TableNewCat.Rows(i)("Cat") Then MsgBox("Cat. Already Exists!!!") Else GoTo write_new_cat End If Next Else write_new_cat: Try Dim file As String = NewCat Dim filepath As String = file.Substring(0,file.LastIndexOf("\")) Dim lines As New List(Of String) lines.AddRange(System.IO.File.ReadAllLines(NewCat)) For co As Integer = 0 To lines.Count - 1 If lines(co).Length > 0 Then Try Dim a1() As String = lines(co).Split("|") Dim Cat As String = a1(0) Dim Title As String = a1(1) Dim Artist As String = a1(2) Dim Album As String = a1(3) Dim Year As String = a1(4) Dim Genre As String = a1(5) Dim Publisher As String = a1(6) Dim Site As String = a1(7) Dim MP3File As String = filepath & "\" & a1(8) Dim Cover As String = filepath & "\[" & Cat & "].jpg" Dim CmdwrtN As sqliteCommand = New sqliteCommand With CmdwrtN .CommandText = "Insert Into trancebeats Values('" _ & Cat & "','" & Title & "','" & Artist & "','" & Album & "'," & Year & ",'" & Genre & "','" & Publisher & "','" & Site & "','" & filepath.Replace("'","''") & "','" & Cover.Replace("'",'" & MP3File.Replace("'","''") & "')" .Connection = con .ExecuteScalar() End With Catch ex As Exception MsgBox(ex.Message & NewCat) End Try End If Next TotNew += 1 Catch ex As Exception MessageBox.Show(ex.ToString,"Error Reading File " & NewCat) End Try btnClear.Enabled = True End If con.Close() prUpdate.Value += 1 lblUpdateResults.Text = prUpdate.Value & " of " & prUpdate.Maximum & " Checked" End Sub
Private Sub btnClear_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles btnClear.Click If con.State = ConnectionState.Closed Then con.open() End If Dim Querytxt As String = "Delete from trancebeats" Dim Cmd As sqliteCommand = New sqliteCommand Try With Cmd .CommandText = Querytxt .Connection = con .ExecuteScalar() MsgBox("Data Cleared") Dim pn As Panel pn = Me.Controls.Item("pnNew") Me.Controls.Remove(pn) flResults.Controls.Clear() btnClear.Enabled = False End With Catch ex As Exception MsgBox(ex.Message) End Try End Sub
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。