<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   Sort: Date

Nesting Tables within Tables
Can I nest tables within tables? Yes, a table can be embedded inside a cell in another table. Here's a simple example: &lt;table&gt; &lt;tr&gt; &lt;td&gt;this is the first cell of the outer table&lt;/td&gt; &lt;td&gt;this is the second cell of the outer table,...
2007-03-03, 5829👍, 0💬

What Is HTML
What is HTML? HTML stands for Hyper-Text Markup Language. HTML is a scripting language that authors can use to embed text tags into a text document to add structural and formatting information. More precisely, HTML gives authors the means to: Publish online documents with headings, text, tables, lis...
2007-03-03, 5828👍, 0💬

Submitting Forms by Hitting ENTER
How do I make a form so it can be submitted by hitting ENTER? You need add JavaScript code to the input fields. When you hit the Enter key, the JavaScript code will be called to submit the form for you.
2007-03-03, 5824👍, 0💬

What are different types of locks in SQL SERVER
What are different transaction levels in SQL SERVER? Transaction Isolation level decides how is one process isolated from other process.Using transaction levels you can implement locking in SQL SERVER. There are four transaction levels in SQL SERVER READ COMMITTED The shared lock is held for the dur...
2007-10-25, 5822👍, 0💬

What is PHP
What is PHP? The PHP Hypertext Preprocessor is a programming language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.
2007-02-27, 5818👍, 0💬

How Many Categories of Data Types
How Many Categories of Data Types? - Oracle DBA FAQ - Understanding PL/SQL Language Basics PL/SQL data types are grouped into 4 categories: Scalar Data Types: A scalar data type holds a single value. Composite Data Types: A composite data type has internal components, such as the elements of an arra...
2007-04-30, 5817👍, 0💬

What Is Transaction
What Is Transaction? - MySQL FAQs - Database Basics and Terminologies A transaction is a logical unit of work requested by a user to be applied to the database objects. MySQL server introduces the transaction concept to allow users to group one or more SQL statements into a single transaction, so th...
2007-05-10, 5813👍, 0💬

Can you explain the process areas part 1
Can you explain the process areas? part 1 Each process area is defined by a set of goals and practices. There are two categories of goals and practices: generic and specific. Generic goals and practices are a part of every process area. Specific goals and practices are specific to a given process ar...
2007-10-30, 5807👍, 0💬

What is CRUD testing and how does a tester test this?
What is CRUD testing and how does a tester test this? CRUD testing is actually Black Box testing. CRUD stands for (Create, Read, Update, Delete). I.e., whether you can Create or Add data, Whether you can Read or Access The Data after it is saved once, or whether you can Deteted the data along with i...
2011-03-31, 5802👍, 0💬

What Is BDB (BerkeleyDB)
What Is BDB (BerkeleyDB)? - MySQL FAQs - Database Basics and Terminologies BDB (BerkeleyDB) is transaction safe storage engine originally developed at U.C. Berkeley. It is now developed by Sleepycat Software, Inc. (an Oracle company now).
2007-05-10, 5798👍, 0💬

Eliminating the Extra White Space after Forms
How can I eliminate the extra space after a form? HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example: &lt;form style="margin-bottom:0;" action=...> ... &lt;/form>
2007-03-03, 5798👍, 0💬

How to test software requirements specification (SRS)?
How to test software requirements specification (SRS)? Do you know “Most of the bugs in software are due to incomplete or inaccurate functional requirements?” The software code, doesn’t matter how well it’s written, can’t do anything if there are ambiguities in requirements. It’s better to catch t...
2009-03-20, 5789👍, 0💬

How you will make available any Message Resources Definitions file to the Struts Framework Environment
How you will make available any Message Resources Definitions file to the Struts Framework Environment? Message Resources Definitions file are simple .properties files and these files contains the messages that can be used in the struts project. Message Resources Definitions files can be added to th...
2007-12-14, 5789👍, 0💬

Can one bypass the Oracle login screen?
Can one bypass the Oracle login screen? The first thing that the user sees when using runform is the Oracle logon prompt asking them for their username, password, and database to connect to. You can bypass this screen or customise it by displaying your own logon screen. Eg: -- ON-LOGON Trigger decla...
2011-03-22, 5788👍, 0💬

What Is Rollback
What Is Rollback? - MySQL FAQs - Database Basics and Terminologies Rollback is a way to terminate a transaction with all database changes not saving to the database server.
2007-05-10, 5783👍, 0💬

Give the Details of XML files used in Validator Framework
Give the Details of XML files used in Validator Framework? The Validator Framework uses two XML configuration files validator-rules.xml and validation.xml. The validator-rules.xml defines the standard validation routines, these are reusable and used in validation.xml to define the form specific vali...
2007-12-28, 5776👍, 0💬

How To Drop a Stored Procedure
How To Drop a Stored Procedure? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions If there is an existing stored procedure and you don't want it any more, you can remove it from the database by using the DROP PROCEDURE statement as shown in the following script example: SQL> CREAT...
2007-04-26, 5775👍, 0💬

How To Test NULL Values
How To Test NULL Values? - Oracle DBA FAQ - Understanding PL/SQL Language Basics There ate two special comparison operators you can use on NULL values: "variable IS NULL" - Returns TRUE if the variable value is NULL. "variable IS NOT NULL" - Return TRUE if the variable value is not NULL. The followi...
2007-04-29, 5772👍, 0💬

What Is JUnit TestCase?
What Is JUnit TestCase? JUnit TestCase is the base class, junit.framework.TestCase, used in JUnit 3.8 that allows you to create a test case. TestCase class is no longer supported in JUnit 4.4. A test case defines the fixture to run multiple tests. To define a test case Implement a subclass of TestCa...
2008-02-26, 5771👍, 0💬

Can I use percentage values for the WIDTH attributes of TD tags?
How can I avoid using the whole URL? Yes. It should be noted that Netscape and Microsoft's browsers interpret percentage values for &lt;TD WIDTH=...> differently. However, their interpretations (and those of other table-aware browsers) happen to match when combined with &lt;TABLE WIDTH="100%...
2007-03-03, 5768👍, 0💬

What is internal change request
What is internal change request? Internal change request are not normally billable change request, it has no financial gains from the client. Example your architecture division of your company has said in mid of the project that the architecture has to be modified. Definitely this has nothing to do ...
2007-10-30, 5767👍, 0💬

What Is Foreign Key
What Is Foreign Key? - MySQL FAQs - Database Basics and Terminologies A foreign key is a single column or multiple columns defined to have values that can be mapped to a primary key in another table.
2007-05-10, 5767👍, 0💬

What Is a Session
What Is a Session? A session is a logical object created by the PHP engine to allow you to preserve data across subsequent HTTP requests. There is only one session object available to your PHP scripts at any time. Data saved to the session by a script can be retrieved by the same script or another s...
2007-02-27, 5767👍, 0💬

Hypertext Link
What is a Hypertext link? A hypertext link is a special tag that links one page to another page or resource. If you click the link, the browser jumps to the link's destination.
2007-03-03, 5764👍, 0💬

<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   Sort: Date