adapter.InsertCommand = myConn.CreateCommand();
adapter.InsertCommand.CommandText =
"INSERT INTO Article " +
"(artId, title, topic, authorId, lines, dateOfPublishing) " +
"VALUES(@artId, @title, @topic, @authorId, @lines, @dateOfPublishing) ";
AddParams(adapter.InsertCommand, "artId", "title", "topic", "authorId", "lines", "dateOfPublishing");