1
I Use This!
Inactive

News

Analyzed 5 days ago. based on code collected 5 days ago.
Posted over 13 years ago by JaCraig
To be honest, I haven't used Blobs in a while so I had to double check, but yes it does. All you would do is: byte[] Data = helper.GetParameter<byte[]>("BlobDataColumn", null); If it's an Image, varbinary, or binary data. And it converts byte arrays appropriately when adding them as a parameter also.
Posted over 13 years ago by MBDTeam
Hi, first I want to thank you for this great libary! Its helping me all day ;-) May ask if the GetParameter Function From helper.ExecuteReader supports binary large objects?   Michael
Posted over 13 years ago by James Craig
1) Added FindGroupMembers function to LDAP Directory class.
Posted over 13 years ago by James Craig
Moved tag Github/master to changeset 39c01a58fe5a (from changeset d0790e4848f7)
Posted over 13 years ago by James Craig
Removed tag github/master
Posted over 13 years ago by James Craig
Moved tag Github/master to changeset d0790e4848f7 (from changeset 8045c97e7b09)
Posted over 13 years ago by James Craig
1) Fixed ordering when initializing mappings in the ORM.
Posted over 13 years ago by James Craig
1) Added execute capability with strings (Utilities.IO.ExtensionMethods).
Posted over 13 years ago by James Craig
1) Updated ORM so that when generating the database it sets ON DELETE CASCADE and ON DELETE SET NULL where applicable (note that items where SQL Server would complain, it just sets up the foreign key). 2) Due to number 1, the number of calls when ... [More] deleting items has been reduced. 3) Fixed issue with Map in CascadeJoinsSave. 4) Updated deletion code so that it goes through and removes joins properly (basically items that aren't deleted by #1). 5) Updated SQL data classes so that columns so that ON DELETE CASCADE, ON UPDATE CASCADE, and ON DELETE SET NULL can be set. [Less]
Posted over 13 years ago by James Craig
1) Moved Command class from ORM namespace to SQL namespace and added the ability to specify parameters. 2) Added an easier way to add parameters to SQLHelper. Now if you use the AddParameter(params object[] Parameters) function, it will treat it like ... [More] string formatting (so in "SELECT * FROM Table WHERE ID=@0 AND Value=@1", if you used AddParameter(10,"This is a string"), it would put the value 10 in for @0 and "This is a string" for @1. 3) Fixed bug in ORM where cascading saves didn't save entries in join tables properly on subsequent items that do not cascade... 4) Reduced the number of database calls that are made when saving an item in the ORM. 5) Added some comments. 6) Added StripIllegalXML string extension. (Utilities.DataTypes.ExtensionMethods) [Less]