<< < 59 60 61 62 63 64 65 66 67 68 69 > >>   Sort: Date

What is WSDL
What is WSDL? Web Service Description Language (WSDL)is a W3C specification which defines XML grammar for describing Web Services.XML grammar describes details such as:- ã Where we can find the Web Service (its URI)? ã What are the methods and properties that service supports? ã Data type suppo...
2007-10-23, 5106👍, 0💬

What Is Commit
What Is Commit? Commit is an event that attempts to make data in the database identical to the data in the form. It involves writing or posting data to the database and committing data to the database. Forms check the validity of the data in fields and records during a commit. Validity check are uni...
2007-04-15, 5106👍, 0💬

What is Asynchronous One-Way Calls
What is Asynchronous One-Way Calls ? One-way calls are a different from asynchronous calls from execution angle that the .NET Framework does not guarantee their execution. In addition, the methods used in this kind of call cannot have return values or out parameters. One-way calls are defined by usi...
2007-10-23, 5105👍, 0💬

Can BLOCKQUOTE Elements Be Nested
Can BLOCKQUOTE Elements Be Nested? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Yes. Blockquote elements can be directly nested. This allows you to include one quote inside another quote. Below is a good example of nested blockquote elements: &lt;?xml version="1.0" ?&gt; &lt;!DO...
2007-05-12, 5105👍, 0💬

How To Generate a Feed title Element
How To Generate a Feed title Element? - RSS FAQs - Atom Feed File Structure and Elements The &lt;title&gt; element is a required sub-element of the &lt;feed&gt; element. The title element should contain a short but human readable title of the feed document. You should follow the same...
2007-05-12, 5105👍, 0💬

How Cookies Are Transported from Browsers to Servers
How Cookies Are Transported from Browsers to Servers? - PHP Script Tips - Understanding and Managing Cookies Cookies are transported from a Web browser to a Web server in the header area of the HTTP request message. Each cookie will be included in a separate "Cookie:" header line in the following fo...
2007-04-24, 5105👍, 0💬

What Are Heading Tags/Elements
What Are Heading Tags/Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Heading elements are block level elements that can be used directly as a sub-element in the body element. You can use heading elements to specify heading in different sizes. Here are basic rules about heading eleme...
2007-05-12, 5104👍, 0💬

How To Drop an Existing Index
How To Drop an Existing Index? - MySQL FAQs - Understanding SQL CREATE, ALTER and DROP Statements If you don't need an existing index any more, you should delete it with the "DROP INDEX indexName ON tableName" statement. Here is an example SQL script: mysql> DROP INDEX tip_subject ON tip; Query OK, ...
2007-05-11, 5104👍, 0💬

How To Define a Cursor Variable
How To Define a Cursor Variable? - Oracle DBA FAQ - Working with Cursors in PL/SQL To define cursor variable, you must decide which REF CURSOR data type to use. There are 3 ways to select a REF CURSOR data type: Define your own specific REF CURSOR types using the TYPE ... RETURN statement. Define yo...
2007-04-28, 5104👍, 0💬

What Are the CSS Cascading Order Rules
What Are the CSS Cascading Order Rules? - CSS Tutorials - Introduction To CSS Basics The most important cascading order rules are: A specified CSS definition wins over a default CSS definition in the browser. A CSS definition with a contextual selector wins over a CSS definition with a tag selector....
2007-05-11, 5102👍, 0💬

How To Set Page Width to a Fixed Value
How To Set Page Width to a Fixed Value? - CSS Tutorials - Page Layout and Background Image Design If you don't want your page to be resized when browser window is resized, you need to set your page width to an absolute value. Many Webmasters use TABLE tags to set page width to a fixed value. But it ...
2007-05-11, 5101👍, 0💬

How To Remove a Cookie
How To Remove a Cookie? - PHP Script Tips - Understanding and Managing Cookies Once a cookie is sent from the server to the browser, there is no direct way for the server to ask the browser to remove the cookie. But you can use the setcookie() function to send the same cookie to browser with a negat...
2007-04-24, 5101👍, 0💬

Can Multiple Columns Be Used in GROUP BY
Can Multiple Columns Be Used in GROUP BY? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements You can use multiple columns in the GROUP BY clause as shown in the following example. It returns how many employees are having the same salary in each department: SQL> SELECT department_id, salary...
2007-04-20, 5101👍, 0💬

What Are the Differences between DATE and TIMESTAMP
What Are the Differences between DATE and TIMESTAMP? - Oracle DBA FAQ - Understanding SQL Basics The main differences between DATE and TIMESTAMP are: DATE stores values as century, year, month, date, hour, minute, and second. TIMESTAMP stores values as year, month, day, hour, minute, second, and fra...
2007-04-24, 5099👍, 0💬

What is the difference between Server.Transfer and response.Redirect
What is the difference between Server.Transfer and response.Redirect ? Following are the major differences between them:- ? Response.Redirect sends message to the browser saying it to move to some different page, while server.transfer does not send any message to the browser but rather redirects the...
2007-10-24, 5098👍, 0💬

What Is an XHTML Element
What Is an XHTML Element? - XHTML Tutorials - Introduction To Tag and Attribute Syntax An XHTML element is the basic building block of an XHTML document. An XHTML element has the following features: An XHTML element must have a name. An XHTML element may have zero or more attributes. An XHTML elemen...
2007-05-12, 5098👍, 0💬

What Is an Atom Syndication Feed
What Is an Atom Syndication Feed? - RSS FAQs - Atom Feed Introduction and File Generation An Atom Syndication feed is just a file that: Is generated statically or dynamically. Has an accessible URL. Confirms with Atom standard. Contains headlines or summaries of an entire Website, a Website section,...
2007-05-12, 5098👍, 0💬

How about 2+5+8?
How about 2+5+"8"? Since 2 and 5 are integers, this is number arithmetic, since 8 is a string, it’s concatenation, so 78 is the result.
2008-09-16, 5097👍, 0💬

What is DTS
What is DTS? DTS is used to pull data from various sources into the star schema.
2007-10-25, 5097👍, 0💬

How can we use dataadapter to fill a dataset ?
What are the steps involved to fill a dataset ? Sample code is provided in “WindowsDataSetSample” folder in CD.”LoadData” has all the implementation of connecting and loading to dataset. This dataset is finally bind to a ListBox. Below is the sample code. Private Sub LoadData() Dim strConnectionStr...
2007-10-24, 5097👍, 0💬

How To Add Another Datafile to a Tablespace
How To Add Another Datafile to a Tablespace? - Oracle DBA FAQ - Managing Oracle Tablespaces and Data Files If you created a tablespace with a data file a month ago, now 80% of the data file is used, you should add another data file to the tablespace. This can be done by using the ALTER TABLESPACE .....
2007-05-03, 5097👍, 0💬

How To Remove a File
How To Remove a File? - PHP Script Tips - Working with Directoris and Files If you want to remove an existing file, you can use the unlink() function. Here is a PHP script example on how to use unlink(): &lt;?php if (file_exists("/temp/todo.txt") ){ unlink("/temp/todo.txt"); print("File removed....
2007-04-23, 5097👍, 0💬

How To Test If a Variable Is an Array
How To Test If a Variable Is an Array? - PHP Script Tips - Understanding PHP Arrays and Their Basic Operations Testing if a variable is an array is easy. Just use the is_array() function. Here is a PHP script on how to use is_array(): &lt;?php $var = array(0,0,7); print("Test 1: ". is_array($var...
2007-04-20, 5097👍, 0💬

How To Write a Query with a Full Outer Join
How To Write a Query with a Full Outer Join? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements If you want to query from two tables with a full outer join, you can use the FULL OUTER JOIN ... ON clause in the FROM clause. The following query returns output with a full outer join from two ...
2007-04-19, 5097👍, 0💬

<< < 59 60 61 62 63 64 65 66 67 68 69 > >>   Sort: Date