|
|
| Databases Discuss anything to do with databases in this sub forum. |

06-19-2010, 07:26 AM
|
|
Senior Member
|
|
Join Date: May 2010
Location: 2711 Centerville Road, Suite 400, Wilmington
Posts: 146
|
|
How to make to a data base?
Hi Friend,
Does anyone know how to make and connect a data base?
Thanks,
James
|

06-22-2010, 01:43 PM
|
|
Junior Member
|
|
Join Date: Jun 2010
Posts: 1
|
|
Depends on the platform you need. I would recommend looking up MySQL and playing around with it.
Many programs will also auto generate databases with is nice.
Luxury Auctions | Home plans | CFO Concrete Mix
Last edited by LoriGirl44 : 06-23-2010 at 12:23 PM.
Reason: opps
|

06-23-2010, 05:42 AM
|
|
Junior Member
|
|
Join Date: Mar 2009
Location: home
Posts: 21
|
|
|
Use google and search, or be more specific (coding language).
|

07-12-2010, 07:54 AM
|
|
Member
|
|
Join Date: Feb 2010
Posts: 36
|
|
|
Its purely depends up on your area of interest I mean a platform and Mysql will be the best for the good database connection.
|

08-26-2010, 12:13 PM
|
|
Member
|
|
Join Date: Aug 2010
Location: India
Posts: 85
|
|
sbglobal
dear sir create database you go to sql server then you write query in query windows create database name
|

09-30-2010, 01:43 AM
|
|
Member
|
|
Join Date: Sep 2010
Posts: 59
|
|
OK friend.
If you use PHP and MySQL this is guide:
Code:
<?php
$con = mysql_connect("localhost","db_user","db_user_password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
if (mysql_query("CREATE DATABASE my_db_name",$con))
{
echo "Database created";
}
else
{
echo "Error creating database: " . mysql_error();
}
mysql_close($con);
?>
Simple, isn't it?
Of course, You must know db_user_name and db_user_password...
|

10-04-2010, 07:29 AM
|
|
Member
|
|
Join Date: Aug 2010
Location: India
Posts: 85
|
|
Discuss anything to do with databases in this sub forum.
dear if create database in sqlserver then you go to query windows open then
write this statement in query windows
like
create database databasename
|

10-18-2010, 06:37 AM
|
|
Senior Member
|
|
Join Date: Jul 2010
Location: delhi ( india )
Posts: 508
|
|
|
Database:-Database store the data in hierarchical format.
Two types of Mange System.
1.RDBMS
2.DBMS
create the database in sql
Syntax
create database databasename
|

10-22-2010, 04:35 AM
|
|
Junior Member
|
|
Join Date: Oct 2010
Posts: 12
|
|
|
You can simply make database on create a table on it by running the sql command syntax easily which you can look it out on the internet if you are not familiar with the code.
|

11-15-2010, 08:37 AM
|
|
Member
|
|
Join Date: Nov 2010
Posts: 85
|
|
|
Following this same structure, we can connect to a database and create new tables. At the end we will print a line, so we know that it is done executing:
<?php // Connects to your Database mysql_connect("your.hostaddress.com", "username", "password") or die(mysql_error()); mysql_select_db("Database_Name") or die(mysql_error()); mysql_query("CREATE TABLE tablename ( name VARCHAR(30), age INT, car VARCHAR(30))");
|

12-03-2010, 09:34 AM
|
|
Junior Member
|
|
Join Date: Nov 2010
Posts: 14
|
|
|
Database create in mysql
create databasename
create table table name(id,name varchar(30), add varchar(255),cont_no int(10));
|

12-20-2010, 11:08 AM
|
|
Senior Member
|
|
Join Date: May 2010
Posts: 684
|
|
|
Here you asked a big question, you'd better search this question on YT, i'm sure you will find lots of videos on it, good luck!
|

02-11-2011, 12:44 PM
|
|
Member
|
|
Join Date: Nov 2010
Location: Delhi
Posts: 97
|
|
|
Create the Database in Sql Server 2005..
Code
create Database Database_name
|

03-12-2011, 08:21 AM
|
|
Senior Member
|
|
Join Date: Sep 2010
Posts: 152
|
|
|
This solution is multi-platform, free and flexible. It's just an assembly of renowned software with small scripts around them to clue the whole thing. The basic ingredients of this receipt are :
Tcl/Tk scripting language
Mysql database
Apache web server
PHP scripting language
Your favorite web-browser.
|

04-11-2011, 05:38 AM
|
|
Member
|
|
Join Date: Mar 2011
Posts: 54
|
|
|
a database within a human resources database that stores the manager-subordinate relationship.Database is the need of every business.
|

04-11-2011, 06:49 AM
|
|
Member
|
|
Join Date: Mar 2011
Posts: 40
|
|
|
Use search engine and search, or be more specific (coding language).
|

04-21-2011, 01:05 PM
|
|
Member
|
|
Join Date: Nov 2010
Location: Delhi
Posts: 97
|
|
|
ya but i use the Sql server 2005 so that i can tell about the sql server 2005 queries.
|

05-05-2011, 01:09 PM
|
|
Junior Member
|
|
Join Date: May 2011
Posts: 5
|
|
Quote:
Originally Posted by James Winson
Hi Friend,
Does anyone know how to make and connect a data base?
Thanks,
James
|
i have ebook on macedonia ..... there u can find more abaout that
if u like my ebook pm me
|

05-24-2011, 05:18 PM
|
|
Senior Member
|
|
Join Date: May 2011
Posts: 392
|
|
|
Use Microsoft Visual Studio, if you are developing in ASP.Net, it has an integrated sql server
|

06-01-2011, 07:12 AM
|
|
Member
|
|
Join Date: May 2011
Posts: 27
|
|
Hi
Which database you want to use then we will help you about that. Thank you.
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +1. The time now is 03:16 PM.
|