Hi everybody,
I have a Problem whith the following line:
var myInsertQuery = "INSERT INTO test (id, customerId, amount)Values(trade.OtherSID, 0, 0)";
Unknown Column 'trade.OtherSID' in 'field list'
Somebody know how to fix it?
If I write:
PrintConsole("THE ID: " + trade.OtherSID + " .", ConsoleColor.Red);
it output the right ID, like:THE ID: STEAM_0:1:12345123 .
#CLOSED!!!
Loading
Nitesh KejriwalPosted Oct 15, 2012, 7:27 AM
var myInsertQuery = "INSERT INTO test (id, customerId, amount)Values("+trade.OtherSID+", 0, 0)";
meinenrPosted Sep 29, 2012, 8:59 AM
Shivanand ArurPosted Sep 29, 2012, 8:22 AM
Sorry for the inconvenience caused by me!!!
meinenrPosted Sep 29, 2012, 8:15 AM
Shivanand ArurPosted Sep 29, 2012, 8:06 AM
They will be able to help you out....
meinenrPosted Sep 29, 2012, 8:05 AM
Shivanand ArurPosted Sep 29, 2012, 7:59 AM
Sorry once again!!!
meinenrPosted Sep 29, 2012, 7:48 AM
var myInsertQuery = "INSERT INTO test (id) Values ('trade.OtherSID')";
But now they only write trade.OtherSID as text in my line.
If i use:
var myInsertQuery = "INSERT INTO test (id) Values (trade.OtherSID)";
it said: Unknown solumn 'trade.OtherSID' in 'field list'
meinenrPosted Sep 29, 2012, 7:47 AM
Shivanand ArurPosted Sep 29, 2012, 7:30 AM
meinenrPosted Sep 29, 2012, 7:04 AM
Shivanand ArurPosted Sep 29, 2012, 7:03 AM
http://www.techsupportforum.com/forums/f49/solved-php-mysql-unknown-column-in-field-list-374532.html
http://coding-talk.com/f14/mysql-error-unknown-column-in-field-list-11633/
http://stackoverflow.com/questions/1346209/unknown-column-in-field-list-error-on-mysql-update-query
http://www.codeproject.com/Questions/458833/Multiple-errors-in-MYSQL-database-problems-with-IN
meinenrPosted Sep 29, 2012, 7:02 AM
This is the User with whom I am in steam in trade
OtherSID:
This get the Steam ID from the User.
Shivanand ArurPosted Sep 29, 2012, 6:56 AM
Shivanand ArurPosted Sep 29, 2012, 6:27 AM