C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Code Snippets » Visual Studio »

LPAD and RPAD SQL Functions in Dot Net


Posted Date: 13 Jul 2009    Resource Type: Code Snippets    Category: Visual Studio
Author: R.VijayaragavanMember Level: Gold    
Rating: 1 out of 5Points: 8



Abstract:


Using SQL Server CLR Functions LPAD and RPAD in Dot Net.

Description:
Integración SQL Server vs CLR.

// Namespace Used

Imports System
Imports System.Data
Imports System.Data.Sql
Imports System.Data.SqlTypes
Imports Microsoft.SqlServer.Server
Imports System.Data.SqlClient
Imports System.Runtime.InteropServices


Code:


Public Class SentenciaSQL
_
Public Shared Function LPad(ByVal strFrase As String, ByVal strCaracter As String, ByVal intCantidad As Integer) As String

Dim strResult As String = vbNullString
Dim i As Integer
For i = 0 To intCantidad - 1
strResult &= strCaracter
Next
strResult = strResult & strFrase
Return Left(strResult, intCantidad)
End Function

_
Public Shared Function RPad(ByVal strFrase As String, ByVal strCaracter As String, ByVal intCantidad As Integer) As String
Dim strResult As String = vbNullString
Dim i As Integer
For i = 0 To intCantidad - 1
strResult &= strCaracter
Next
strResult = strFrase & strResult
Return Right(strResult, intCantidad)
End Function

End Class



Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Feedbacks      
Popular Tags   What are tags ?   Search Tags  
Sign In to add tags.
LPAD and RPAD SQL Functions in Dot Net  .  

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: Create An Database using SQL Connection
Previous Resource: Creates a new custom collection in VB.Net
Return to Discussion Resource Index
Post New Resource
Category: Visual Studio


Post resources and earn money!
 
More Resources



dotNet Slackers

About Us    Contact Us    Privacy Policy    Terms Of Use