Creating Vectors of Pointers to the short Datatype
In most situations, it doesn’t make much sense to create vectors of pointers to the short datatype. Compare these two code samples: vector myvector; //bad code.short * pS = new
In most situations, it doesn’t make much sense to create vectors of pointers to the short datatype. Compare these two code samples: vector myvector; //bad code.short * pS = new
This C++ class tracks elapsed time. The mark() method is called at the point of interest, after which there are methods to retrieve the elapsed time between points, total time,
VB6 introduced the CallByName function which allows you to call a function or subroutine using the subroutine or function name stored as a string value. While this function still works
Both select scope_identity and select @@identity return the identity column value of a newly inserted row. However, @@identity is not reliable because it works in a session level. So, suppose
In WebLogic 6.1, the default state for the Pass By Reference parameter is true. This is not so in IBM’s WebSphere. To enable the Pass By Reference parameter in WebSphere,
C++ does not support the nested functions. However, you can use local classes to simulate the effects of nested functions. Take the scenario given below: int get_1 (int y){ int
You can use VBscript’s Filesystemobject to list all the subfolders in a folder. Create a text file called showfolderlist.vbs and enter the following code: showfolderlist eg showfolderlist “c:windows” The Showfolderlist
Just write the HTML-Tag for the ASP.NET Control into the XSLT:
The following query will list all the stored procedure names available in the current database: SELECT name AS spnameFROM sysobjectsWHERE (xtype = ‘p’) AND (name NOT LIKE ‘dt%’)ORDER BY name