Altering MySQL Database

kryotek

New Member
Messages
5
Reaction score
0
Points
0
Houdy guys,

I woul like to know how can I upload the MySQL Database that I Have to to my account do have to make a script on my page so i can insert tables and all or do I have the tools to that?

Best Regards,
Kryo
 

LHVWB

New Member
Messages
1,308
Reaction score
0
Points
0
* Moved to Scripts & 3rd Party Apps.

You can use phpmyadmin or a similar tool to do a sql dump of your entire database or the tables that you want, then you can open up PhpMyAdmin in Cpanel and run the sql dump as a sql query, which will put your data into the database which you have selected.
 

kryotek

New Member
Messages
5
Reaction score
0
Points
0
Thanks...

And by the way... is this connection string correct?

Driver={MySQL ODBC 3.51 Driver};Server=localhost;Database=myDataBase; User=myUsername;Password=myPassword;Option=3;
 
Last edited:

deadimp

New Member
Messages
249
Reaction score
0
Points
0
What API are you using? Different API's have different ways of connecting.
Ex: The basic mysql driver gets connection information by passing each piece as an argument.
 
Last edited:
Top