Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Creating a function (http://www.velocityreviews.com/forums/t496731-creating-a-function.html)

David 04-05-2007 02:52 PM

Creating a function
 
Hi,

This is causing me a few problems as I am not sure how to handle this...

I have a data access layer. My layer is built in such a way that I can use
any database type I choose, such as SQL Server, MySQL etc.

Now, in my layer, I have all my SQL statements and use parameterised
queries. An example of a parameter is...

cmd = DL.CreateCommand(sql, conn);

param = DL.CreateDataParameter();
param.ParameterName = "@DomainName";
param.DbType = DbType.String;
param.Value = DomainName;

cmd.Parameters.Add(param);

(DL is the data layer)

What I would like to do somehow is to call a function and pass the values,
but I am not sure how the function should be constructed.

I want to be able to call it something like...

param = BuildParam("@DomainName", DbType.String, ValueString).

The reason being is my Datalayer is getting quite big now, much of the space
is taken by declaring my parameters like what is shown.

Any help would be appreciated.



BTW. Thanks Alexei, the keys in my web.config to allow authentication across
applications worked great.

--
Best regards,
Dave Colliver.
http://www.AshfieldFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available



=?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?= 04-05-2007 03:26 PM

RE: Creating a function
 
Something like this is how I might do it (this is untested "Pseudocode"):

public IDbCommand AddParameter(IDbCommand cmd, string paramName, DbType
paramType, object paramValue )
{

IDataParameter param = new (whatever the database provider is, e.g.
SqlParameter)
param.Name = paramName;
param.DbType = paramType;
param.Value =paramValue;
cmd.Parameters.Add(param)
return cmd;
}



http://msdn2.microsoft.com/en-us/lib...rs(vs.71).aspx

Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net




"David" wrote:

> Hi,
>
> This is causing me a few problems as I am not sure how to handle this...
>
> I have a data access layer. My layer is built in such a way that I can use
> any database type I choose, such as SQL Server, MySQL etc.
>
> Now, in my layer, I have all my SQL statements and use parameterised
> queries. An example of a parameter is...
>
> cmd = DL.CreateCommand(sql, conn);
>
> param = DL.CreateDataParameter();
> param.ParameterName = "@DomainName";
> param.DbType = DbType.String;
> param.Value = DomainName;
>
> cmd.Parameters.Add(param);
>
> (DL is the data layer)
>
> What I would like to do somehow is to call a function and pass the values,
> but I am not sure how the function should be constructed.
>
> I want to be able to call it something like...
>
> param = BuildParam("@DomainName", DbType.String, ValueString).
>
> The reason being is my Datalayer is getting quite big now, much of the space
> is taken by declaring my parameters like what is shown.
>
> Any help would be appreciated.
>
>
>
> BTW. Thanks Alexei, the keys in my web.config to allow authentication across
> applications worked great.
>
> --
> Best regards,
> Dave Colliver.
> http://www.AshfieldFOCUS.com
> ~~
> http://www.FOCUSPortals.com - Local franchises available
>
>
>


Jon Paal [MSMD] 04-05-2007 03:53 PM

Re: Creating a function
 
This style of coding may help streamline:


Sub Dothis(byVal DomainName As String, byVal Something As Integer)

....

With cmd.Parameters
.Add(New SqlParameter("@DomainName", DomainName))
.Add(New SqlParameter("@Something", Something))
End With

....

End sub



David 04-05-2007 04:30 PM

Re: Creating a function
 
Fantastic. This lead me onto....

in my calling location
cmd.Parameters.Add(AddParameter(DL.CreateDataParam eter(), cmd,
"@DomainName", DbType.String, DomainName));

public IDataParameter AddParameter(IDataParameter param, IDbCommand cmd,
string paramName, DbType paramType, object paramValue )
{
param.ParameterName = paramName;
param.DbType = paramType;
param.Value =paramValue;
return param;
}

Looking at this, I can remove the cmd portion as well.

Once I understood this, I then went further using your code more closely
(where I need the cmd portion)

cmd = AddParameter(DL, cmd, "@DomainName", DbType.String, DomainName);

public IDbCommand AddParameter(DataAccessLayer.ProviderFactory DL,
IDbCommand cmd, string paramName, DbType paramType, object paramValue )
{

IDataParameter param = DL.CreateDataParameter();
param.ParameterName = paramName;
param.DbType = paramType;
param.Value =paramValue;
cmd.Parameters.Add(param);

return cmd;
}


Thanks.

I am gonna have a big job now re-writing my code to use this...

--
Best regards,
Dave Colliver.
http://www.AshfieldFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available
"Peter Bromberg [C# MVP]" <pbromberg@yahoo.yabbadabbadoo.com> wrote in
message news:70EA9C62-6561-4E53-8741-F01953864A5F@microsoft.com...
> Something like this is how I might do it (this is untested "Pseudocode"):
>
> public IDbCommand AddParameter(IDbCommand cmd, string paramName, DbType
> paramType, object paramValue )
> {
>
> IDataParameter param = new (whatever the database provider is, e.g.
> SqlParameter)
> param.Name = paramName;
> param.DbType = paramType;
> param.Value =paramValue;
> cmd.Parameters.Add(param)
> return cmd;
> }
>
>
>
> http://msdn2.microsoft.com/en-us/lib...rs(vs.71).aspx
>
> Peter
> --
> Site: http://www.eggheadcafe.com
> UnBlog: http://petesbloggerama.blogspot.com
> Short urls & more: http://ittyurl.net
>
>
>
>
> "David" wrote:
>
>> Hi,
>>
>> This is causing me a few problems as I am not sure how to handle this...
>>
>> I have a data access layer. My layer is built in such a way that I can
>> use
>> any database type I choose, such as SQL Server, MySQL etc.
>>
>> Now, in my layer, I have all my SQL statements and use parameterised
>> queries. An example of a parameter is...
>>
>> cmd = DL.CreateCommand(sql, conn);
>>
>> param = DL.CreateDataParameter();
>> param.ParameterName = "@DomainName";
>> param.DbType = DbType.String;
>> param.Value = DomainName;
>>
>> cmd.Parameters.Add(param);
>>
>> (DL is the data layer)
>>
>> What I would like to do somehow is to call a function and pass the
>> values,
>> but I am not sure how the function should be constructed.
>>
>> I want to be able to call it something like...
>>
>> param = BuildParam("@DomainName", DbType.String, ValueString).
>>
>> The reason being is my Datalayer is getting quite big now, much of the
>> space
>> is taken by declaring my parameters like what is shown.
>>
>> Any help would be appreciated.
>>
>>
>>
>> BTW. Thanks Alexei, the keys in my web.config to allow authentication
>> across
>> applications worked great.
>>
>> --
>> Best regards,
>> Dave Colliver.
>> http://www.AshfieldFOCUS.com
>> ~~
>> http://www.FOCUSPortals.com - Local franchises available
>>
>>
>>





All times are GMT. The time now is 09:26 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57