Using a good editor helps in reducing time. IF youa coding or programming things for some custom programs like matlab is suggest you use the editor provided by them since it always have all features required. But for coding other programing languages like php,html,c ,c++ i suggest notepad++. |
Friday, March 13, 2009
General: Editors for Programming
Posted by Basis-Consultant at 2:51 PM 1 comments
Friday, January 9, 2009
How to stop iframe from scrolling
How to stop scrolling in IFRAME? <iframe src="http://www.google.com" scrolling="no" width="400" height="400"> </iframe> Here is the output |
Posted by Basis-Consultant at 11:45 AM 0 comments
Wednesday, December 31, 2008
SQL: What is Null Value
In SQL a null value is undefined or inapplicable or the field has no value assigned or defined. It is not equal to zero or space. Zero is a number and space is a character. Null is undefined value. Any rows of any data type can contain a null unless the column defined has primary key or is set not null ( which means the column cannot contain null values). |
Posted by Basis-Consultant at 4:59 PM 0 comments
SQL: The Select Statement tutorial 1
SELECT statement falls under DQL (Data Query Language ) of SQL. It is used to query or retrieve data from sql. Here is a sample table for use to practise. The table name is trees.
+-------------------------------------------+------------------------------------------+ SELECT * from trees; GENERIC SYNTAX below SELECT * from TABLENAMEThis is show all the columns and rows in table trees. If you want to see only specific columns you have to issue the sql command like this [GENERIC FORMAT] SELECT column1,column2 from TABLENAME column1 & column2 are column names in the table. SELECT PlotID,TreeTagNumber from trees; This command displays only PlotID and TreeTagNumber from above table. The output will be like this +------------------------------------OUTPUT------------------------------------------+
+-------------------------------------------+------------------------------------------+ |
Posted by Basis-Consultant at 11:22 AM 0 comments
Labels: ddl, select statement, sql
Tuesday, December 30, 2008
SQL: Types of sub languages in SQL
All commands of sql fall in one of the following categories.
2. DML (Data Manipulation Language) The statements that falls under this category are used to update data or add or remove data from tables. UPDATE, DELETE and INSERT commands fall under this category. 3. DCL (Data Control Language) It is used to control who access the data. The commands that come under this category are GRANT and REVOKE 4. TCL (Transaction Control Language) This language is used to commit data and restore data. COMMIT and ROLLBACK falls under this category. 5. DQL (Data Query Language) This is to retrieve data from sql server. SELECT statement falls in this category. All above languages are SQL. They are just categories of SQL. they are not different from SQL. |
Posted by Basis-Consultant at 12:40 PM 0 comments
Monday, December 29, 2008
SQL:What is sql statement
To retrieve or manipulate data present in tables of a database we issue some commands to the server. They are called sql statements. One of the sql statement is SELECT * from titles; In above statement we are calling for all rows in the table to be displayed. |
Posted by Basis-Consultant at 12:52 AM 0 comments
Labels: sql
Sunday, December 28, 2008
SQL: What is SQL
SQL stands for Structured Query Language. It is used to retrieve and manipulate data in database. SQL can enter data into database |
Posted by Basis-Consultant at 8:16 PM 0 comments
Labels: sql
SQL: What is a table
Posted by Basis-Consultant at 3:54 PM 0 comments
Friday, December 26, 2008
JAVA: Tutorials List and Resources
1) Very Comprehensive Tutorials by the official java developers. No need for any book. Just learn all you want to know about java with ample example for each concept. |
Posted by Basis-Consultant at 11:01 PM 2 comments
Thursday, December 25, 2008
PHP: Software for php Development
\ The distribution for Windows 98, NT, 2000, 2003, XP and Vista. This version contains: Apache, MySQL, PHP + PEAR, Perl, mod_php, mod_perl, mod_ssl, OpenSSL, phpMyAdmin, Webalizer, Mercury Mail Transport System for Win32 and NetWare Systems v3.32, Ming, JpGraph, FileZilla FTP Server, mcrypt, eAccelerator, SQLite, and WEB-DAV + mod_auth_mysql.Get Xampp Here Get Notepad++ Here |
Posted by Basis-Consultant at 11:15 AM 0 comments



