ERRO : nenhum valor especificado.

.NET

07/08/2007

OLÁ GALERA ESTOU UM PROBLEMÃO AQUI...DESEVOLVI UM SISTEMINHA DE BUSCA A PRINCIPIO QUANDO DOU UM BUILD ELE NÃO ACUSA NENHUM ERRO, MAS QUANDO TENTO RODÁ-LO NO BRONSWER ELE DÁ ESSE ERRO:

Nenhum valor foi fornecido para um ou mais parâmetros necessários.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Nenhum valor foi fornecido para um ou mais parâmetros necessários.

Source Error:

Line 747: Me.Adapter.SelectCommand = Me.CommandCollection(0)
Line 748: Dim dataTable As DataSet1.empresasDataTable = New DataSet1.empresasDataTable
[b:09c82a3a08]Line 749: Me.Adapter.Fill(dataTable)[/b:09c82a3a08]
Line 750: Return dataTable
Line 751: End Function

ALGUEM AÍ SABE ME DIZER QUE VALOR EU TENHO QUE ATRIBUIR ?????

TÔ NO AGURADO GENTE...VLW


Denny_21

Denny_21

Curtidas 0

Respostas

Ladmo

Ladmo

07/08/2007

String sql = "select *from sindicato where id = ?
PreparedStament pst = conexao.con.PrepareStatement(sql);
Resultset rs = pst.executeQuery();
surgem a mensagem de erro: a nenhum o valor especifico para parâmetro
GOSTEI 0
Ladmo

Ladmo

07/08/2007

String sql = "select *from sindicato where id = ?";
PreparedStament pst = conexao.con.PrepareStatement(sql);
Resultset rs = pst.executeQuery();
surgem a mensagem de erro: a nenhum o valor especifico para parâmetro1
GOSTEI 0
POSTAR