Error on .NET

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
mjimenez
Posts: 6
Joined: Thu 27 Apr 2006 16:22

Error on .NET

Post by mjimenez » Sat 29 Apr 2006 17:28

Error
An unhandled exception of type 'System.MissingMetohodException'ocurred in System.Windows.forms.dll

Sentence



sql = "select * from sm_movil"
Dim com As New OracleCommand(sql, cnnprueba)
Dim pruebareader As OracleDataReader = com.ExecuteReader(System.Data.CommandBehavior.Default)

TxtMovil.Text = pruebareader.GetOrdinal("mo_numero")
TxtModelo.Text = pruebareader.GetOrdinal("mo_modelo")
TxtModelo.Text = pruebareader.GetOrdinal("mo_serial")

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Wed 03 May 2006 11:17

Please describe the problem in detail.
Send us small test project if possible to reproduce the problem; it is
desirable to use 'scott' schema objects, otherwise include definition of
your own database objects. Do not use third party components.
If it is impossible for you to create test project please send us a piece of
your code where the error occurs.

Post Reply