--- rw2300.c.orig	2010-11-01 23:44:15.000000000 +0100
+++ rw2300.c	2010-11-01 23:45:04.000000000 +0100
@@ -2414,6 +2414,7 @@
 	strcpy(config->mysql_user, "open2300");             // MySQL database user name
 	strcpy(config->mysql_passwd, "mysql2300");          // Password for MySQL database user
 	strcpy(config->mysql_database, "open2300");         // Name of MySQL database
+	strcpy(config->mysql_table, "weather");             // MySQL table name
 	config->mysql_port = 0;                             // MySQL port. 0 means default port/socket
 	strcpy(config->pgsql_connect, "hostaddr='127.0.0.1'dbname='open2300'user='postgres'"); // connection string
 	strcpy(config->pgsql_table, "weather");             // PgSQL table name
@@ -2560,6 +2561,12 @@
 			continue;
 		}
 		
+		if ( (strcmp(token,"MYSQL_TABLE") == 0) && (strlen(val) != 0) )
+		{
+			strcpy(config->mysql_table, val);
+			continue;
+		}
+		
 		if ( (strcmp(token,"MYSQL_PORT") == 0) && (strlen(val) != 0) )
 		{
 			config->mysql_port = atoi(val);
