tags:

views:

27

answers:

1

There is a project that I need to maintain that talks to mysql via jdbc and there is an insert statement that looks like this:

loadStr.append("IGNORE INTO TABLE xxx.inventory (tn, @v1, @v2, @v3)");

What does the @v# mean?

+2  A: 

The @ symbol means it's a variable.

Jonathan
But that variable isn't being provided anywhere. The code pretty much just does the query after that.
arinte