Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Populating OleDbParameterCollection
Message
From
23/12/2005 13:03:50
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
23/12/2005 04:16:39
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01080445
Message ID:
01080591
Views:
12
>I have a class which starts like this:
>
>
>Imports System.Data.OleDb
>
>Public Class Data
>
>    Public oDataAdapter As OleDbDataAdapter
>    Public oDataSet As DataSet
>    Public oDataView As DataView
>    Public cSQL As String
>    Public cConnectionString As String
>    Public nCount As Integer
>    Public oParameters As OleDbParameterCollection
>
>
>To instantiate it, I do something like this:
>
>
>        Dim loDataProvider As Framework.Data = New Framework.Data
>
>
>Now, I need to add some parameters in the collection before doing something else. So, the instantiation code section now contains this:
>
>
>        Dim loDataProvider As Framework.Data = New Framework.Data
>        loDataProvider.oParameters.Add(New OleDbParameter("@Username", lcUsername))
>
>
>This doesn't give any error at design time. But, when I run it, I obtain:
>
>Object reference not set to an instance of an object
>
>Anyone would know what I have to adjust?
Public oParameters As OleDbParameterCollection
...
oParameters = oDataAdapter.SelectCommand.Parameters
oParameters doesn't sound to be a good naming really.
loDataProvider.oDataAdapter.SelectCommand.Parameters.Add( ... )
loDataProvider.oDataAdapter.UpdateCommand.Parameters.Add( ... )
loDataProvider.oDataAdapter.InsertCommand.Parameters.Add( ... )
PS: Might not be right. Thinking C# wrting VB:)
Cetin
Çetin Basöz
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform