SitePoint Sponsor |
|
User Tag List
Results 1 to 3 of 3
-
Feb 22, 2005, 19:27 #1
Make a mysql database file for me (was "A little help guys")
I don't have MYSQL on my PC, and I was wondering if anyone here could make this databse file for me
Code:CREATE TABLE `dbUsers` ( `id` INT NOT NULL AUTO_INCREMENT , `username` VARCHAR( 16 ) NOT NULL , `password` CHAR( 16 ) NOT NULL , `email` VARCHAR( 25 ) NOT NULL , PRIMARY KEY ( `id` ) , UNIQUE ( `username` ) );
-
Feb 22, 2005, 19:52 #2
sorry, but what is it you want exactly? if you don't have mysql, then your code can't work if it needs to connect with a db. A db is not just a file, its an entire software (that saves its data in files).
-
Feb 22, 2005, 19:57 #3
AHA! I did not know that thanks much!!! Know I need to download MySql I guess
Bookmarks