I\'m new to SQL Server
I\'ve created my table like this:
CREATE TABLE Accidents ( Id INT NOT NULL PRIMARY KEY IDENTITY, GUID VARCHAR(100),
you need single quotes to string values
But I strightly recommend you to use SQLParameters to avoid any SQLInjections attacks
SQLInjections
You can find examples of using SQL Parameters here