TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ismael Oliveira
1.6k
122
9.3k
Insert of a record in a DB with error
Nov 4 2020 2:54 PM
Hi, folks.
I’m creating an application in C# with Visual Studio which works with SQLSERVER. I created a routine to write data in the DB, which inserts data in 2 tables. In the first one it’s working fine, but the second always gives an error with the message: “code 102: incorrect syntax next to ‘(‘”.
I’ve executed step by step and the syntax seems to be correct. I changed the way the command is composed, but the error persists. The change is a commented piece of code The code of the routine is as follows.
public
static
bool
GravaRegistroDuplo(
string
StabelaPri, List<
string
> ScamposPri, List<
string
> StiposPri, List<
string
> SdadosPri,
string
StabelaSec,
List<
string
> ScamposSec, List<
string
> StiposSec, List<
string
> SdadosSec,
ref
string
Smensagem)
{
string
TextoSQL =
"insert into "
+ StabelaPri +
"("
;
int
i;
// Aqui são adicionados os campos da tabela principal no comando INSERT
for
(i = 0; i < ScamposPri.Count; i++)
TextoSQL += ScamposPri[i] +
","
;
TextoSQL = TextoSQL.Substring(0, TextoSQL.Length - 1) +
")"
;
// Aqui são acrescentados os parâmetros do comando
TextoSQL +=
" values("
;
for
(i = 0; i < SdadosPri.Count; i++)
TextoSQL +=
"@Val"
+ i +
","
;
TextoSQL = TextoSQL.Substring(0, TextoSQL.Length - 1) +
")"
;
using
(var con =
new
SqlConnection(ConfigurationManager.AppSettings[
"TextoConexao"
]))
{
con.Open();
// É iniciada uma transação que sofrerá o COMMIT (ou ROLLBACK)
SqlTransaction Tran = con.BeginTransaction();
try
{
string
nome;
SqlCommand Cmd =
new
SqlCommand(TextoSQL, con, Tran);
// Aqui são acrescentados os valores a serem inseridos na tabela principal por meio dos parâmetros
for
(i = 0; i < SdadosPri.Count; i++)
{
nome =
"@Val"
+ i.ToString();
if
(StiposPri[i] ==
"numeric"
)
Cmd.Parameters.AddWithValue(nome,
float
.Parse(SdadosPri[i]));
else
Cmd.Parameters.AddWithValue(nome, SdadosPri[i]);
}
TextoSQL = TextoSQL.Substring(0, TextoSQL.Length - 1) +
")"
;
Cmd.ExecuteNonQuery();
// Definição do texto SQL para obtenção do código do registro inserido
Cmd.Dispose();
TextoSQL =
"select @@identity"
;
Cmd =
new
SqlCommand(TextoSQL, con, Tran);
SqlDataReader rdr;
rdr = Cmd.ExecuteReader();
// Cod1 é o código do registro recém-inserido na tabela
if
(rdr.Read())
{
if
(rdr.GetValue(0).ToString() !=
""
)
SdadosSec[0] = rdr.GetValue(0).ToString();
}
rdr.Close();
// Agora será introduzido o registro na tabela secundária
Cmd.Dispose();
TextoSQL =
"insert into "
+ StabelaSec +
"("
;
Cmd =
new
SqlCommand(TextoSQL, con, Tran);
for
(i = 0; i < ScamposSec.Count; i++)
TextoSQL += ScamposSec[i] +
","
;
TextoSQL = TextoSQL.Substring(0, TextoSQL.Length - 1) +
")"
;
// Aqui são acrescentados os parâmetros do comando na tabela secundária
TextoSQL +=
" values("
;
for
(i = 0; i < ScamposSec.Count; i++)
{
if
(StiposSec[i] ==
"integer"
)
TextoSQL += SdadosSec[i] +
","
;
else
if
(StiposSec[i] ==
"numeric"
)
TextoSQL += SdadosSec[i] +
","
;
else
if
(StiposSec[i] ==
"string"
)
TextoSQL +=
"'"
+ SdadosSec[i] +
"',"
;
else
if
(StiposSec[i] ==
"date"
)
TextoSQL +=
"'"
+ SdadosSec[i] +
"',"
;
}
/*
for (i = 0; i < ScamposSec.Count; i++)
{
nome = "@Val" + i.ToString();
TextoSQL += nome + ",";
if (StiposSec[i] == "numeric")
Cmd.Parameters.AddWithValue(nome, float.Parse(SdadosSec[i]));
else if (StiposSec[i] == "string")
Cmd.Parameters.AddWithValue(nome, SdadosSec[i]);
else if (StiposSec[i] == "integer")
Cmd.Parameters.AddWithValue(nome, int.Parse(SdadosSec[i]));
else if (StiposSec[i] == "date")
Cmd.Parameters.AddWithValue(nome, DateTime.Parse(SdadosSec[i]));
}
*/
TextoSQL = TextoSQL.Substring(0, TextoSQL.Length - 1) +
")"
;
Cmd.ExecuteNonQuery();
// Validação das inserções no BD
Tran.Commit();
Smensagem =
"Sucesso"
;
return
true
;
}
catch
(SqlException ex)
{
Tran.Rollback();
Smensagem =
"Código: "
+ ex.Number +
"\nMensagem: "
+ ex.Message;
return
false
;
}
}
}
Can anybody help me? Thanks a lot.
Reply
Answers (
2
)
how to run Process.Start at specific time windows foms c#
how can i add new user in SQL server authentication mode by Using C# c