Link to home
Start Free TrialLog in
Avatar of nickmarshall
nickmarshall

asked on

How do I carry on a line?

Experts,

Another very simple question for you!

How do I carry On a line of code to the next line as I have a very large database query.

I have seen using the underscore character "_"

Please help
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

how do you execute the query (which tool/code9
Avatar of nickmarshall
nickmarshall

ASKER

Using Vb.net to execute MySQL query
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Here is one of my lines with just one element

 Dim SQLQuery As String = "Insert Into Hardware (ID, CSName) VALUES (' ', '" & CSNameNode.InnerText & "', )"

CSNameNode.InnerText is an XML node

I have various other node elements, ie CSCpuNode, CSMotherboardNode

How would I add them to this query?....

 Dim SQLQuery As String = "Insert Into Hardware (ID, CSName) VALUES (NULL, '" & CSNameNode.InnerText & "'  )"