<< < 25 26 27 28 29 30 31 32 33 34 35 > >>   Sort: Date

What Are the Main Differences between Atom 1.0 and RSS 2.0
What Are the Main Differences between Atom 1.0 and RSS 2.0? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics Main differences between Atom 1.0 and RSS 2.0: Atom has separate "summary" and "content" elements, while RSS only has one "description" element. Atom standardizes auto-disc...
2007-05-12, 5792👍, 0💬

Do Broswers Support Multiple Forms
Do Broswers Support Multiple Forms? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields XHTML 1.0 does allow you to create multiple forms in a single XHTML document. Most browsers will display and handle multiple forms properly. If click a submit button in one form, browsers will submit inp...
2007-05-12, 5791👍, 0💬

What Happens If a JUnit Test Method Is Declared to Return "String"
What Happens If a JUnit Test Method Is Declared to Return "String"? If a JUnit test method is declared to return "String", the compilation will pass ok. But the execution will fail. This is decause JUnit requires that all test methods must be declared to return "void". For example: type HelloTestNon...
2008-01-24, 5789👍, 0💬

What Is SQL*Loader
What Is SQL*Loader? - Oracle DBA FAQ - Loading and Exporting Data SQL*Loader is a database tool that allows to load data from external files into database tables. SQL*Loader is available as part of the free Oracle 10g Expression Edition. It has some interesting features as: Can load data from multip...
2007-04-30, 5788👍, 0💬

How To Quote Text Values in SQL Statements
How To Quote Text Values in SQL Statements? - MySQL FAQs - Managing Tables and Running Queries with PHP Scripts Text values in SQL statements should be quoted with single quotes ('). If the text value contains a single quote ('), it should be protected by replacing it with two single quotes (''). In...
2007-05-11, 5787👍, 0💬

What’s the use of SmartNavigation property
What’s the use of SmartNavigation property ? It’s a feature provided by ASP.NET to prevent flickering and redrawing when the page is posted back. Note:- This is only supported for IE browser. Project’s who have browser compatibility as requirements have to think some other ways of avoiding flickeri...
2007-10-24, 5786👍, 0💬

What Is a Connect Identifier
What Is a Connect Identifier? - Oracle DBA FAQ - Introduction to Command-Line SQL*Plus Client Tool A "connect identifier" is an identification string of a single set of connection information to a specific target database instance on a specific Oracle server. Connect identifiers are defined and stor...
2007-04-28, 5786👍, 0💬

What is basic use of “DataView”
What is basic use of “DataView” ? “DataView” represents a complete table or can be small section of rows depending on some criteria. It is best used for sorting and finding data with in “datatable”. Dataview has the following method’s Find It takes a array of values and returns the index of the r...
2007-10-24, 5784👍, 0💬

How To Place Comments in PL/SQL
How To Place Comments in PL/SQL? - Oracle DBA FAQ - Understanding PL/SQL Language Basics There are two ways to place comments into PL/SQL codes: SQL Statement Style: Starts you comment any where in the line but prefixed with '--'. The comment ends at the end of the line. C Language Style: Starts you...
2007-05-01, 5781👍, 0💬

How To Read a File in Binary Mode
How To Read a File in Binary Mode? - PHP Script Tips - Reading and Writing Files If you have a file that stores binary data, like an executable program or picture file, you need to read the file in binary mode to ensure that none of the data gets modified during the reading process. You need to: Ope...
2007-04-23, 5781👍, 0💬

How To Avoid the Antialias Edges When Cutting and Pasting
How To Avoid the Antialias Edges When Cutting and Pasting? - PSP Tutorials - Fading Images to Background Colors with PSP When you finish a larger image and want to select one area as a new image, you can use the Selection tool to cut and paste that area into a new image. But the new image will show ...
2007-05-09, 5780👍, 0💬

What is the difference WCF and Web services?
What is the difference WCF and Web services? Web services can only be invoked by HTTP. While Service or a WCF component can be invoked by any protocol and any transport type. Second web services are not flexible. But Services are flexible. If you make a new version of the service then you need to ju...
2007-11-04, 5779👍, 0💬

Overriding JSP Server Generated Servlet Subclass
How do I have the JSP-generated servlet subclass be my own custom servlet class, instead of the default? One should be very careful when having JSP pages extend custom servlet classes as opposed to the default one generated by the JSP engine. In doing so, you may lose out on any advanced optimizatio...
2007-04-03, 5778👍, 0💬

How To Run SQL Functions in PL/SQL
How To Run SQL Functions in PL/SQL? - Oracle DBA FAQ - Working with Database Objects in PL/SQL Of course, you can run SQL functions in SQL statements. But many SQL functions can also be executed in regular PL/SQL statements, as shown in the following sample script: DECLARE now DATE; id NUMBER; str V...
2007-04-27, 5777👍, 0💬

Relation between HTML and CSS
What Is the Relation between HTML and CSS? CSS (Cascading Style Sheets) is a technical specification that allows HTML document authors to attach formatting style sheets to HTML documents. When HTML documents are viewed as Web pages through Web browsers, the attached style sheets will alter the defau...
2007-03-03, 5775👍, 0💬

What is marshalling and what are different kinds of marshalling
What is marshalling and what are different kinds of marshalling ? Marshaling is used when an object is converted so that it can be sent across the network or across application domains. Unmarshaling creates an object from the marshaled data. There are two ways to do marshalling :- ã Marshal-by-valu...
2007-10-23, 5774👍, 0💬

Can we sign a satellite assembly
Can we sign a satellite assembly? Yes you can sign the satellite assembly using the /keyfile switch which takes “.snk” file as the input parameter. al /res:MyLanguage.resources /c:de /keyfile:MyLang.snk out:MyLanguages.resources.dll
2007-11-02, 5771👍, 0💬

Observer Interface and Observable Class
How are Observer and Observable used? Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated, it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by obj...
2007-03-03, 5770👍, 0💬

How To Invoke the Data Pump Export Utility
How To Invoke the Data Pump Export Utility? - Oracle DBA FAQ - Loading and Exporting Data The Data Pump Export utility is distributed as executable file called "expdp.exe". To invoke this utility, you should go to the "bin" directory of your Oracle server installation and run the "expdp" command. He...
2007-05-01, 5769👍, 0💬

What is the difference between System exceptions and Application
What is the difference between System exceptions and Application exceptions? All exception derives from Exception Base class. Exceptions can be generated programmatically or can be generated by system. Application Exception serves as the base class for all applicationspecific exception classes. It d...
2007-10-22, 5762👍, 0💬

Is Attribute Name Case Sensitive
Is Attribute Name Case Sensitive? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Yes, attribute names are case sensitive. You must write all attribute names in lower case letters. Here are some valid and invalid attribute names: &lt;a href="http://dev.fyicenter.com "&gt;- Valid...
2007-05-12, 5762👍, 0💬

How does one suppress or customize error messages in Forms?
How does one suppress or customize error messages in Forms? One can either set the message level using the system variable SYSTEM.MESSAGE_LEVEL or trap errors using the ON-ERROR or ON-MESSAGE triggers. MESSAGE_LEVEL: Set to 0, 5, 10, 15, 20, 25 to suppress all messages with severity below this level...
2011-04-05, 5761👍, 0💬

What Is Wrong with My &lt;br&gt; Tags
What Is Wrong with My &lt;br&gt; Tags? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If you are used HTML syntax, you may write your &lt;br&gt; tags as in the paragram below: &lt;p&gt; I love the way you look at me,&lt;br&gt; Your eyes so bright and blu...
2007-05-12, 5759👍, 0💬

Stoping JSP Execution in the Middle of a JSP Page
Can I stop JSP execution while in the midst of processing a request? Yes. Preemptive termination of request processing on an error condition is a good way to maximize the throughput of a high-volume JSP engine. The trick (asuming Java is your scripting language) is to use the return statement when y...
2007-04-03, 5759👍, 0💬

<< < 25 26 27 28 29 30 31 32 33 34 35 > >>   Sort: Date