I am going to discuss about how to read a file in Ruby
Initially we need a text file,
lets' start
fname = ARGV.first #assigns file name dynamically
text= open(fname)
print text.read #reads the file...
Creating database and tables on terminal
first access mysql on terminal
type :mysql -u root -p
password:xxxxx
write query for creating database
mysql>CREATE DATABASE reddy;
Query OK, 1 row affected (0.02 sec)
under reddy database we r creating table ,so
mysql> use reddy;
Database changed
reddy database selected,now create table
mysql> create table bang(id int(22) AUTO_INCREMENT,name varchar(20) NOT NULL,Country...
Today I'm going to explain about how to connect to database using PHP and how to create databases etc
First connect to localhost
mysql_connect("localhost","username","password") or die(mysql_error());
second:create a database
$query=mysql_query("CREATE DATABASE databasename");
if($query)
{
echo "database created";
}
else
{
die(mysql_error());
}
Now we can create table under database
$query1=mysql_query("CREATE TABLE tablename(column_name...
SQL stands for Structured Query Language ,it is used to communicate with database.According to ANSI it is the standard language for relational database management systems.Some relational database management systems that used SQL are MySQL ,ORACLE,Sybase etc.The standard SQL commands "SELECT","CREATE","UPDATE","DELETE" are used by the most of the database systems .
SQL can create stored procedures in...