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

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, 5163👍, 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, 5163👍, 0💬

How To Insert a Record into a Table
How To Insert a Record into a Table? - Oracle DBA FAQ - Working with Database Objects in PL/SQL If you have a RECORD variable with data fields matching a table structure, you can insert a row to this table with this RECORD variable using the INSERT statement as shown in the example below: CREATE TAB...
2007-04-26, 5163👍, 0💬

How To Specify Argument Default Values
How To Specify Argument Default Values? - PHP Script Tips - Creating Your Own Functions If you want to allow the caller to skip an argument when calling a function, you can define the argument with a default value when defining the function. Adding a default value to an argument can be done like thi...
2007-04-25, 5163👍, 0💬

What is Reference counting in COM ?
.NET INTERVIEW QUESTIONS - What is Reference counting in COM ? Reference counting is a memory management technique used to count how many times an object has a pointer referring to it. The first time it is created, the reference count is set to one. When the last reference to the object is nulled, t...
2010-01-19, 5162👍, 0💬

Which HTML Tag Allows Users to Specify a File for Uploading
Which HTML Tag Allows Users to Specify a File for Uploading? - PHP Script Tips - Uploading Files to Web Servers To present an input field on your Web page to allow users to specify a local file to upload, you need to use the &lt;INPUT TYPE="FILE" ...> tag inside a &lt;FORM ...> tag. The &...
2007-04-19, 5162👍, 0💬

How To Read One Character from a File
How To Read One Character from a File? - PHP Script Tips - Reading and Writing Files If you have a text file, and you want to read the file one character at a time, you can use the fgetc() function. It reads the current character, moves the file pointer to the next character, and returns the charact...
2007-04-22, 5159👍, 0💬

How To Create a Database
How To Create a Database? - PHP Script Tips - Working with MySQL Database A database in a MySQL server is a logical container used to group tables and other data objects together as a unit. If you are a the administrator of the server, you can create and delete databases using the CREATE/DROP DATABA...
2007-04-18, 5159👍, 0💬

What Is a TABLE Tag/Element
What Is a TABLE Tag/Element? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells A "table" element is a block level element that you can use to present information in table of rows and columns. Here are basic rules about "table" elements: "table" elements are block elements. "table" element...
2007-05-11, 5158👍, 0💬

How To Add a New Column to an Existing Table
How To Add a New Column to an Existing Table? - Oracle DBA FAQ - Understanding SQL DDL Statements If you have an existing table with existing data rows, and want to add a new column to that table, you can use the ALTER TABLE ... ADD statement to do this. Here is an example script: SQL> connect HR/fy...
2007-04-22, 5158👍, 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, 5157👍, 0💬

How To Validate XHTML Documents Online
How To Validate XHTML Documents Online? - XHTML FAQs - Introduction To XHTML 1.0 If you have just finished a new XHTML document, and you want to make sure that confirms with the XHTML specification, you can use the XHTML online validator at http://validator.w3.org/ . There are 3 ways you can use thi...
2007-05-12, 5157👍, 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, 5156👍, 0💬

How To Select Some Columns from a Table
How To Select Some Columns from a Table? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY If you want explicitly tell the query to return some columns, you can specify the column names in the SELECT clause. The following select statement returns only two columns, "id" and "url" from the tabl...
2007-05-11, 5156👍, 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, 5156👍, 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, 5156👍, 0💬

What Are the Options to Transfer Session IDs
What Are the Options to Transfer Session IDs? - PHP Script Tips - Understanding and Using Sessions Once a new session is created, its session ID must be transferred to the client browser and included in the next client request, so that the PHP engine can find the same session created by the same vis...
2007-04-18, 5156👍, 0💬

What is the use of @ OutputCache directive in ASP.NET
What is the use of @ OutputCache directive in ASP.NET? It is basically used for caching. See more for Caching chapter.
2007-10-24, 5155👍, 0💬

What Is a Data Lock
What Is a Data Lock? - Oracle DBA FAQ - Understanding SQL Transaction Management A data lock is logical flag the Oracle server is placed on data objects to give an exclusive right to a transaction. Statements in other transactions needs to respect data locks based on certain rules. Rules on data loc...
2007-04-17, 5155👍, 0💬

What Are Character Functions
What Are Character Functions? Character Functions are INITCAP, UPPER, LOWER, SUBSTR and LENGTH. Additional functions are GREATEST and LEAST.
2007-04-15, 5155👍, 0💬

What Is a BR Tag/Element
What Is a BR Tag/Element? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags A "br" element is an inline element that you can use to specify a line break in the paragraph. Here are basic rules about "br" elements: "br" elements are inline elements. "br" elements can not be used at block...
2007-05-12, 5154👍, 0💬

How To Update Values in a Table
How To Update Values in a Table? - MySQL FAQs - Understanding SQL INSERT, UPDATE and DELETE Statements If you want to update some values in one row or multiple rows in a table, you can use the UPDATE statement. The tutorial script below shows a good example: mysql> UPDATE fyi_links SET counts = 999,...
2007-05-11, 5154👍, 0💬

What Is an Array in PHP
What Is an Array in PHP? - PHP Script Tips - Understanding PHP Arrays and Their Basic Operations An array in PHP is really an ordered map of pairs of keys and values. Comparing with Perl, an array in PHP is not like a normal array in Perl. An array in PHP is like an associate array in Perl. But an a...
2007-04-20, 5154👍, 0💬

How do I sign out in forms authentication
How do I sign out in forms authentication ? FormsAuthentication.Signout()
2007-10-24, 5153👍, 0💬

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