









Declaring a Member Function as a Friend of Another Class
Although you can declare an entire class a friend of another class, like this: class A{ friend class B; //B has access to every member of A //..}; However, in
Although you can declare an entire class a friend of another class, like this: class A{ friend class B; //B has access to every member of A //..}; However, in
Java containers have a mechanism to prevent more than one process from modifying the contents of a container. The problem occurs if you
When displaying a recordset in a table with a border, if there is no data returned for a cell, the borders will not show up around that cell. To alleviate
Below is an example of passing in parameters when calling a stored procedure from an ASP page.
When you extend a class and override a method, Java insists that the new method cannot be declared as throwing checked exceptions of classes other than those that were declared
When a connection is created using JDBC, by default it is in auto-commit mode. This means that each SQL statement is treated as a transaction and will be automatically committed
Often, while developing a system, you need to put a lot of debug statements in the code, all which have to be commented/removed before delivering the application. There’s a class
You can use the Dir( ) function to return a long filename, but the return does not include path information. By parsing a given short path/filename into its constituent directories,