The syntax is as shown below, BUT DON'T DO THAT WAY because it is vulnerable to SQL injection attacks.dim TitleOld as string = "abcdefgh"sql = "INSERT INTO LibraryChanges(column1) VALUES ('" & TitleOld & "');"One way to prevent the injection risk would be to create a stored proc as shown below and then call that stored proc from VB.Net.CREATE PROCEDURE dbo.InsertATitle @TitleOld VARCHAR(256)AS INSERT INTO LibraryChanges(column1) VALUES ( @TitleOld );GO
This stored proc is just an example and limited, for example, it will allow you to insert only one value at a time.