Posts

Showing posts from September, 2017

HOW TO ADD CHARACTER ENCODING TO CROME | FIREFOX

Image
FOR 'GOOGLE CROME' Add the  following extension  https://chrome.google.com/webstore/detail/set-character-encoding/bpojelgakakmcfmjfilgdlmhefphglae/support Right click on any web page and then --> set character encoding --> go to required encoding  (if option appears, click an other place) FOR 'MOZILLA FIREFOX' Make sure you have Local font you required (e.i. Hindi Unicode font like Mangal. Aprajita, Akhashar etc. on your computer system.) Click on right corner in Mozilla Firefoz browser, you will a tool list will open select cutomize as given in below image. Click on Customize Option, it will open a new tab, you will Text Encoding Option. Right click on Text Encoding Option. You can add it in Toolbar or Menu (A symbol of text encoding will appear in menu bar). After that click on Text Encoding and Choose Unicode Encoding. Now you see garbage text in Hindi as seen on below image.

COMPUTER: SQL

SQL ( Structured Query Language ) SQL consists of a  1.data definition language ,  2.data manipulation language , and  3.data control language Data definition language   DDL: A  data definition language  or  data description language  ( DDL ) is a syntax similar to a computer  programming language  for defining  data structures , especially  database schemas . CREATE statement The  CREATE  command is used to establish a new database, table, index, or stored procedure . CREATE TABLE [table name] ( [column definitions] ) [table parameters ] An example statement to create a table named  employees  with a few columns is: CREATE TABLE employees (     id             INTEGER        PRIMARY KEY ,     first_name     VARCHAR ( 50 )    no...