Affiliate Programs
 
Search affiliate programs for: 
Affiliate Categories
» Affiliate Networks
» Ad Networks
» 2 Tier Programs
» Pay Per Sale
» Pay Per Lead
» Residual Income
» Datafeeds
» Multi Tier Programs
» Business Opps
» Other Programs

Newsletter
Get newly added affiliate programs by email. Enter your email here:
Article Categories
» Affiliate Marketing
» Business
» Ecommerce
» Hosting
» Marketing
» Sales
» Web Designing
» Webmasters
» SEO & Promotion
» Working At Home
» Other Articles
» Affiliate Glossary


Go Back   AffiliateSeeking Forum > Website Creation, Design & Maintenance > Databases

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

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-19-2010, 07:26 AM
James Winson James Winson is offline
Senior Member
 
Join Date: May 2010
Location: 2711 Centerville Road, Suite 400, Wilmington
Posts: 146
James Winson is on a distinguished road
Default How to make to a data base?

Hi Friend,
Does anyone know how to make and connect a data base?

Thanks,
James
__________________
Computer Repair | Tech Support
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 06-22-2010, 01:43 PM
LoriGirl44 LoriGirl44 is offline
Junior Member
 
Join Date: Jun 2010
Posts: 1
LoriGirl44 is on a distinguished road
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 06-23-2010, 05:42 AM
locking locking is offline
Junior Member
 
Join Date: Mar 2009
Location: home
Posts: 21
locking is on a distinguished road
Use google and search, or be more specific (coding language).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 07-12-2010, 07:54 AM
Ralph Paul Ralph Paul is offline
Member
 
Join Date: Feb 2010
Posts: 36
Ralph Paul is on a distinguished road
Its purely depends up on your area of interest I mean a platform and Mysql will be the best for the good database connection.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 08-26-2010, 12:13 PM
sbglobal sbglobal is offline
Member
 
Join Date: Aug 2010
Location: India
Posts: 85
sbglobal is on a distinguished road
Send a message via MSN to sbglobal Send a message via Yahoo to sbglobal Send a message via Skype™ to sbglobal
Default sbglobal

dear sir create database you go to sql server then you write query in query windows create database name
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 09-30-2010, 01:43 AM
infoman66 infoman66 is offline
Member
 
Join Date: Sep 2010
Posts: 59
infoman66 is on a distinguished road
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...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 10-04-2010, 07:29 AM
sbglobal sbglobal is offline
Member
 
Join Date: Aug 2010
Location: India
Posts: 85
sbglobal is on a distinguished road
Send a message via MSN to sbglobal Send a message via Yahoo to sbglobal Send a message via Skype™ to sbglobal
Default 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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 10-18-2010, 06:37 AM
ursimrankhanna ursimrankhanna is offline
Senior Member
 
Join Date: Jul 2010
Location: delhi ( india )
Posts: 508
ursimrankhanna is on a distinguished road
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 10-22-2010, 04:35 AM
izang izang is offline
Junior Member
 
Join Date: Oct 2010
Posts: 12
izang is on a distinguished road
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 11-15-2010, 08:37 AM
jurwanwall jurwanwall is offline
Member
 
Join Date: Nov 2010
Posts: 85
jurwanwall is on a distinguished road
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))");
__________________
Designer Sunglass Reviews
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 12-03-2010, 09:34 AM
jackson24771 jackson24771 is offline
Junior Member
 
Join Date: Nov 2010
Posts: 14
jackson24771 is on a distinguished road
Database create in mysql
create databasename
create table table name(id,name varchar(30), add varchar(255),cont_no int(10));
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 12-20-2010, 11:08 AM
StoneWilson StoneWilson is offline
Senior Member
 
Join Date: May 2010
Posts: 684
StoneWilson is on a distinguished road
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!
__________________
Store-replica
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 02-11-2011, 12:44 PM
deveshraigniit deveshraigniit is offline
Member
 
Join Date: Nov 2010
Location: Delhi
Posts: 97
deveshraigniit is on a distinguished road
Create the Database in Sql Server 2005..
Code
create Database Database_name
__________________
Girls T Shirts|T Shirts| Sopping Online
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 03-12-2011, 08:21 AM
logoonlinepros logoonlinepros is offline
Senior Member
 
Join Date: Sep 2010
Posts: 152
logoonlinepros is on a distinguished road
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 04-11-2011, 05:38 AM
richerdjohn richerdjohn is offline
Member
 
Join Date: Mar 2011
Posts: 54
richerdjohn is on a distinguished road
a database within a human resources database that stores the manager-subordinate relationship.Database is the need of every business.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 04-11-2011, 06:49 AM
eashan eashan is offline
Member
 
Join Date: Mar 2011
Posts: 40
eashan is on a distinguished road
Use search engine and search, or be more specific (coding language).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 04-21-2011, 01:05 PM
deveshraigniit deveshraigniit is offline
Member
 
Join Date: Nov 2010
Location: Delhi
Posts: 97
deveshraigniit is on a distinguished road
ya but i use the Sql server 2005 so that i can tell about the sql server 2005 queries.
__________________
Girls T Shirts|T Shirts| Sopping Online
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18 (permalink)  
Old 05-05-2011, 01:09 PM
Network Network is offline
Junior Member
 
Join Date: May 2011
Posts: 5
Network is on a distinguished road
Quote:
Originally Posted by James Winson View Post
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19 (permalink)  
Old 05-24-2011, 05:18 PM
tylerlongtw tylerlongtw is offline
Senior Member
 
Join Date: May 2011
Posts: 392
tylerlongtw is on a distinguished road
Use Microsoft Visual Studio, if you are developing in ASP.Net, it has an integrated sql server
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20 (permalink)  
Old 06-01-2011, 07:12 AM
mali.sandhya2 mali.sandhya2 is offline
Member
 
Join Date: May 2011
Posts: 27
mali.sandhya2 is on a distinguished road
Default Hi

Which database you want to use then we will help you about that. Thank you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 03:16 PM.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.0.0
© 2004-2011 AffiliateSeeking. All rights reserved.