Welcome!

Importance Of #attached Attribute In Drupal Forms API Reference, A New Feature In Drupal 7

==================================================================== function myModule_personal_detail_form($form, &$form_state) { $form = array(); $form = array( '#type' => 'textfield', ); $form = array( '#type' => 'textfield', ); $form = array( '#type' => 'textfield', '#maxlength' =>…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to get the Deleted Identity Numbers in SQL Server 2005

— Create Employee Table Create Table EMPLOYEE( ID int,EmpID int,EmpName varchar(50)) — Insert Sample data to the Employee table INSERT INTO EMPLOYEE VALUES ( 1, 1, ‘Aasish’) INSERT INTO EMPLOYEE…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Insert ,Update,Delete operation in Kentico cms

How do we Insert,Delete,Update from Kentico webproject by using a webpart? In Kentico CMS we have a database with number of tables to support the CMS system, still some times…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Unsafe Keyword And Pointers In C Sharp

C# does not support pointer arithmetic by default to have type safety and security. If we want to use pointers in C# we need to use the keyword unsafe. We…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Coldfusion|Making a call to a Web Service with complex object as input parameter

Steps: 1- Register the webservice in CF admin using any method (whether by manual creation in cf admin or by creating an object) 2- After the wsdl is registered, it…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Manage Query Caching In ColdFusion Separately

Caching has been used for years to improve performance of applications. So it is very much important to control caching properly to get highest possible benefit out of it. Please…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Large Query Issue In Zend_Db Adapter Method

Using Zend_Db Adapter method we use the following approach to connect database and execute SQL statement. //Connect to database $db = Zend_Db::factory(‘DB_ADAPTER_TYPE’, array( ‘host’ => ‘127.0.0.1’, ‘username’ => ‘webuser’, ‘password’…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
SQLServer Index – III (Non-Clustered Index)

By Default, a nonclustered index gets created if keyword ‘clustered’ is not specified. Here in the above example, we have created a nonclustered index ‘IX_Employee_EmpID’ on EmpID column of  Employee…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Manipulating SQL SERVER database table's data with XML XPath and XQuery

Here I am assuming 1- Many relationship between Department and Employee table(i.e. A department has many employee and a single employee can work only in a single department). Part –…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!