autoincrement
nie jest słowem kluczowym SQL Server. Myślę, że zamierzasz:
string sqlStatement2 = "CREATE TABLE " + Table2Name + "" +
"(line_id int not null identity(1, 1) PRIMARY KEY, " +
"line_full_name CHAR(50) NOT NULL," +
" network_id INTEGER FOREIGN KEY REFERENCES network(network_id))";
Ponadto FOREIGN KEY
wymaga odniesienia do tabeli.