andré20 Posted December 7, 2011 Report Share Posted December 7, 2011 Olá estou louco precisa de ajuda!! se alguém puder me ajudar agradeçoexiste uma tabelae quero pegar o ultimo ide joga-lo em um txtboxmas não consigo fazer isto, de uma forma facil....alguém pode me ajudar?! Quote Link to comment Share on other sites More sharing options...
0 Xistyle Posted December 7, 2011 Report Share Posted December 7, 2011 Ué... SELECT MAX(id) FROM tabela não funciona? Quote Link to comment Share on other sites More sharing options...
0 andré20 Posted December 7, 2011 Author Report Share Posted December 7, 2011 e como atribuo para o textbox? Quote Link to comment Share on other sites More sharing options...
0 Xistyle Posted December 7, 2011 Report Share Posted December 7, 2011 Depende de como você está fazendo, qual a linguagem você está usando... Basicamente, de uma forma simples, seria assim:string strStringConexao = "suaStringConexao"; OdbcConnection conConexao = new OdbcConnection(strStringConexao); conConexao .Open(); OdbcCommand cmd = new OdbcCommand("SELECT MAX(id) FROM tabela", conConexao ); OdbcDataReader dr = cmd.ExecuteReader(); if (dr.HasRows == true) { if (dr.Read()) { textBox.Text = dr[0].ToString(); } } Quote Link to comment Share on other sites More sharing options...
Question
andré20
Olá estou louco precisa de ajuda!! se alguém puder me ajudar agradeço
existe uma tabela
e quero pegar o ultimo id
e joga-lo em um txtbox
mas não consigo fazer isto, de uma forma facil....
alguém pode me ajudar?!
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.