autoincrement
är inte ett SQL Server-nyckelord. Jag tror att du tänker:
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))";
Dessutom FOREIGN KEY
kräver en tabellreferens.