3 текстовых поля, 3 столбца в 1 запросе данных - PullRequest
0 голосов
/ 23 марта 2020

Привет, ребята, еще раз, я нуждаюсь в вашей помощи. Я столкнулся с другой проблемой, которая включает mysql

В строке кода строковых переменных это просто делает "сохраненные данные" в базе данных mysql в одном столбце, например, один прямой столбец в vbform: cmbboxbreed1 = золотистый ретривер Cmbboxbreed2 = немецкий sheperd

Но в mysql это всего один столбец

Порода Золотистый ретривер German Shepard

я стремлюсь к тому, чтобы они находились в разных столбцах Mysql -

Идентификатор породы 1 Золотой ретривер 2 Немецкая овчарка

Dim person as new ownerclass
Dim doggo as new dogclass
Dim breed as new breedclass

Dim fname as string = txtboxfname.text
Dim lname as string = txtboxlname.text

Dim brd as string = comboboxbrd1.text &""& cmbboxbrd2.txt &"" & cmmbboxbrd3.txt&" "&

Dim name as string 
=txtboxname1.text &""& txtboxname2.txt &"" & txtboxname3.txt&" "&

Dim age as string =txtboxage1.text &""& txtboxage2.txt &"" & txtboxage3.txt&" "&


If verif and person.insertowner(fname,lname) then
Msgbox("yes")
Else
Msgbox ("sorry")
End if
End sub

Function verif as boolean
If txtboxfname.text.trim = " " or (allofthe txtboxes and comboboxes ).text.trim =" "
Else 
Return true
End if
End function

`
CLASSES
`
public function insertowner(byval fname as string ,byval lname as string) as boolean

Using command as new mysqlcommand(" insert into table(fname,lname) values (@fn,@ln),db.Connection" 

Command.parameter.add("@fn",mysqldbtype.varchar).value = fname

Db.connection

If command.executenonquery =  1 then
Return true
Else 
Return false
End if
End using```


In the dim brd as string line code ... Though it does work but its just one column not separated pls help
Current code excution
Breed
Golden Retriever German Shepherd
I aim for
Id   Breed
1.    Golden Retriever
2.    German Shepherd
...