Stream Database Photo as ASPX page...





ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

-8
Date Submitted Sun. Jul. 16th, 2006 9:04 AM
Revision 1
Helper eriveraa
Tags .Net | VB.NET
Comments 1 comments
Simple Connection Class.
-9
Date Submitted Sun. Jul. 16th, 2006 9:11 AM
Revision 1
Helper eriveraa
Tags .Net | VB.NET
Comments 0 comments
Util Class with methods for executing datasets, nonquerys, sending mails, etc.
-9
Date Submitted Sun. Jul. 16th, 2006 9:16 AM
Revision 1
Helper eriveraa
Tags SQL
Comments 0 comments
Some usefull snippets for SQL Server.
0
Date Submitted Fri. Jul. 21st, 2006 8:37 PM
Revision 1
Helper eriveraa
Tags Server | SQL
Comments 1 comments
This is an example of how to shrink a database with simple query.
4
Date Submitted Sat. Aug. 26th, 2006 10:17 PM
Revision 1
Beginner cf_ernie
Tags "SQL Server" | ColdFusion | SQL
Comments 1 comments
This is a little script I wrote that copies your database through a cfquery statement

Enjoy,
Ernie
ernest.breau@gmail.com
6
Date Submitted Wed. Sep. 6th, 2006 9:22 PM
Revision 1
Helper jbplou
Tags Security | String | VB.NET
Comments 1 comments
This snippet generates a secure hash string using VB.NET
5
Date Submitted Fri. Sep. 8th, 2006 7:05 PM
Revision 1
Helper jbplou
Tags net | VB.NET
Comments 0 comments
Returns a string collection of IP addresses for a passed in domain name.
3
Date Submitted Sat. Sep. 9th, 2006 11:10 AM
Revision 1
Helper jbplou
Tags Exception | VB.NET
Comments 1 comments
This function returns a stack trace for an exception with all inner exceptions include unless the count of inner exceptions goes over 50. A stack overflow can occur if there is no upper limit for inner exceptions to read from.

Makes use of stringbuilder to build return string in order to yield higher performance.
4
Date Submitted Sat. Sep. 9th, 2006 9:22 PM
Revision 1
Helper jbplou
Tags String | VB.NET
Comments 2 comments
This function provides the reverse of a string. It is constructed using string builder because strings in .NET are immutable, while stringbuilders are not. Therefore large strings could be slow to reverse if a regular string was used for the working value that is returned.
5
Date Submitted Mon. Sep. 18th, 2006 6:59 PM
Revision 1
Helper jbplou
Tags VB.NET
Comments 0 comments
Counting for loop in VB.NET. Looks easy because it is, but I saw one submitted for PHP.