If my host gives me a "Mysql database" can I creat my own using access and upload it? and if yes what would be the path that I would have to put in the string.
SQL question
Collapse
X
-
It's probably best to export the access database into a text file, and then import that text file into mysql.
If you have any questions or want help with that, you can contact me on ICQ -> 33375924.Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager -
Yea, you might need to do the xport and import like woj said!
jDoGNSCash now powering ReelProfits.com
ALSO FEATURING: NSCash.com :: SoloDollars.com :: ReelProfits.com :: BiminiBucks.com :: VOD
PROGRAMS COMING SOON: Greedy Bucks :: Vengeance Cash
NOW OFFERING OVER 60 SITES
CONTACT :: JAMES SMITH :: CHIEF TECHNOLOGY OFFICER :: ICQ (711385133)Comment
-
mysql -u username -p
enter your password
create database databnase_name;
use database_name;
create table table_name ( ...... blah blah ..... );
Although unless you are programming the majority of the scripts just make the tables and what not for you as long as you have a username /pw and database.Comment


Comment