DavidTigerch
MIS
Hi all . I got the following sql statemnt that insert data to mysql db . Currently i have to enter artistsname and albumname manually(shown in bold beleow) but i want to collect them from listview and also get one extra item information which is from listbox(cdpic) .
I be happy if some one help me construct the correct sql by collecting correct data from listview and listbox. thanks
My current insert statement:
1)artist and album data ==> from first row of 3th and 4th column of listview
( 3th and 4th listview column names artistName,albumName)
2)cdpic data ======> from first row of listbox
Note: i want t add http://localhost prefix to the value of first row of listbox then use the whole value in sql statment.
cdpic = http://localhost/+ first item of listbox
create the insert statemetn just like this with bold parts those information i want to collect from listbox and listview:
I be happy if some one help me construct the correct sql by collecting correct data from listview and listbox. thanks
My current insert statement:
Code:
CNN.Execute "INSERT INTO songs (filename,title,artist,album) VALUES('" & path & "','" & title & "',' [B]Andy[/B]',[B]'Live concert in Germany[/B]')"
1)artist and album data ==> from first row of 3th and 4th column of listview
( 3th and 4th listview column names artistName,albumName)
2)cdpic data ======> from first row of listbox
Note: i want t add http://localhost prefix to the value of first row of listbox then use the whole value in sql statment.
cdpic = http://localhost/+ first item of listbox
create the insert statemetn just like this with bold parts those information i want to collect from listbox and listview:
Code:
CNN.Execute "INSERT INTO songs (filename,title,[B]artist,album,cdpic[/B]) VALUES('" & path & "','" & title & "',' [B]????[/B]','[B]?????[/B]','[B]??????[/B]')"