PL\SQL development tools
Currently, I'm dealing with pl\sql.I serf the Web and find next tools:
(I like SQL Navigator but it's not freeware)
Tool
| Web Site
|
|---|---|
Make you published source code more colorful
I'm going to publish VB code here. So I serf thru Internet and find out Just installed syntax nice syntax highlighter.
If you want to install syntax highlighter to your blog too, please look here.
http://developertips.blogspot.com/2007/08/syntaxhighlighter-on-blogger.html
Example of code is following:
'parser for optional arguments that stores in format Name=Value;Name=Value;Name=Value;
'return dictionary object
Function ArgumentsParser(sData)
Dim oResult, arrData, arrInnerData, i
Set oResult = CreateObject("Scripting.Dictionary")
arrData = Split(sData, ";")
For i = 0 to uBound(arrData)
arrInnerData = Split(arrData(i), "=")
oResult.Add arrInnerData(0), arrInnerData(1)
Next
Set ArgumentsParser = oResult
End Function
Have any questions? Write a comment.
Inception
I created this blog long time ago but only now have time to write posts. There are a lot of sites within Internet about QTP experience. I strongly believe experience is different.
Will have a look.... so let start off
Site Map
QuickTest Professional
VBScript
Object Model
....
Subscribe to:
Comments
(Atom)