Search results for query: *

  1. S

    Restore Mysql database query is not working in ASP.NET, C#

    Dear Sir/Madam, we are using Mysql.exe to restore database by the following query string cmd ="-h" + ViewState["host"].ToString() + " " + "-u" + ViewState["user"].ToString() + " " + "-p" + ViewState["password"].ToString() + " " + ViewState["dbName"].ToString() + "<" + " " +...
  2. S

    Question Error when running MySql Script file in Dotnet installer

    Dear jmcilhinney Thanks for your reply, We are using NSIS to install an application and the script file contains normal MySql Create Table syntax for example delimiter $$ CREATE TABLE 'admin` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `server_id` bigint(20) DEFAULT NULL, PRIMARY KEY...
  3. S

    Question Error when running MySql Script file in Dotnet installer

    Dear Sir/Madam, We are using NSIS to install an application. and we have a MySql Script file, which is using inside the installer class. This file is working with Mysql but not from the installer. This is giving a ERROR 42000 syntax error. Any help will be appreciated Santhosha H P
Back
Top