|
Posted
over 13 years
ago
by
James Craig
1) Added XOr extension to string class (Utilities.Encryption.ExtensionMethods)
|
|
Posted
over 13 years
ago
by
James Craig
Weird bug in NuGet where it doesn't recognize the package once it's been installed. Trying to fix it.
|
|
Posted
over 13 years
ago
by
JaCraig
To be honest, I have no idea what you're trying to do without seeing code. But generally speaking using the SQLHelper class usually looks like this:
using(SQLHelper Helper=new SQLHelper("SQL Command","ConnectionString",CommandType))
{
|
|
Posted
over 13 years
ago
by
jcraig
Moved tag Github/master to changeset 3750b1f2b424 (from changeset 97db0f369563)
|
|
Posted
over 13 years
ago
by
jcraig
1) Updated HttpContext extensions to use HttpContextBase instead.
2) Added extension method to Dictionary and NameValueCollection classes to export the values as a query string (Utilities.Web.ExtensionMethods)
3) Added UserIPAddress and
|
|
Posted
over 13 years
ago
by
tiriansystem
Yes I found that all my parameters are gone after i use the command method, but if I have to add the parameters again may I ask why should I create a "dummy" helper in the first place?
anyway, tks for the response, very generous of you for the library.
|
|
Posted
over 13 years
ago
by
JaCraig
Set the Command property to whatever query you need. However it's going to clear out the parameters. So you're going to have to add any parameters after you set the Command property. Note that until you dispose of the Helper object (or call Close)
|
|
Posted
over 13 years
ago
by
tiriansystem
I am using the helper to create a dynamic sql command text. When I use the helper to create the helper class, I do not have the sql command text.
How can I create the helper and add parameters, then add the command text later?
|
|
Posted
almost 14 years
ago
by
James Craig
1) Updated BlogML code a bit more (fixed bugs that were found).
|
|
Posted
almost 14 years
ago
by
James Craig
1) Updated BlogML code to allow for exporting.
2) Updated a number of comments on various files.
|