Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Populating OleDbParameterCollection
Message
From
23/12/2005 04:16:39
 
 
To
All
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Populating OleDbParameterCollection
Miscellaneous
Thread ID:
01080445
Message ID:
01080445
Views:
87
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?
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Next
Reply
Map
View

Click here to load this message in the networking platform