Wednesday, 14 November 2012

How to Search a word and check where it used in ASP.net

Using Ctrl+Shift+F we can search with suggested all the pages where the searched word are used

Wednesday, 7 November 2012

How to Import Excel file data in MySql table



Step-1: Create .CSV file of the data.

Step-2: Create data bse and table name in which you want to upload the data

Step-3: Run the following details of MySql Command Prompt:

mysql> LOAD DATA LOCAL INFILE 'C:\\emp.csv' INTO TABLE emp_details.emp_data FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\r\n' (id, name);