Category Articles RSS Feed
How do I query MySQL database in ASP.NET?
Viewed 12135 times since Tue, May 1, 2012
In order to query your mySQL Database with ASP.NET script, you need to organize an ODBC connection with us first. The following the snippet of the code: <%@ Page Language="VB" %> <%@ import Namespace="System.Data.Odbc" %> <script runat... Read More
Can you grant SELECT PRIVILEGE to the system table mysql.proc
Viewed 5767 times since Mon, Jun 18, 2012
Unfortunately, we cannot grant such privilege as it will expose our mySQL database to higher security risk. Please refer to http://forums.mysql.com/read.php?98,41655,230799#msg-230799 for more information Read More
What is the connection string for my MySQL database?
Viewed 3658 times since Mon, May 7, 2012
If you want to connect from your site to your mySQL database, you need to use localhost as the mySQL server details, together with the correct mySQL username and password that you create via our Control Panel Read More
How do I query MySQL Database in PHP ?
Viewed 2948 times since Tue, May 1, 2012
Please follow the following guidelines: <html>      <head>              <title>MySQL Test Code</title>      </head>      <body>       ... Read More
Do you support MySQL WebAdmin Access?
Viewed 2858 times since Tue, May 1, 2012
Yes, we do support mySQL WebAdmin access and you can access this tool by logging to our Control Panel -> Database -> click your mySQL -> WebAdmin. Read More
Can i login to my MySQL database via my own mySQL tool?
Viewed 2667 times since Mon, May 7, 2012
Unfortunately, if you want to administer your mySQL database remotely, you need to use our mySQL WebAdmin tool that is available from our Control Panel -> Database -> click your mySQL database -> WebAdmin. Read More
Can I set up additional logins for my MySQL database?
Viewed 2582 times since Mon, Apr 30, 2012
Yes, you can setup additional database users login via your Control Panel -> click on your domain -> Database -> Add New Database User Read More
What is the connection string for my mariaDB database?
Viewed 1209 times since Fri, Jun 26, 2020
If you want to connect from your site to your mariaDB database, please use: Server=localhost; Port=3306; Database={database}; Uid={user}; Pwd={password} {user} = the db username that you created on our Control Panel {password} = the db... Read More