连接到OpenShift的mysql时,表不存在

时间:2016-03-14 07:24:49

标签: mysql tomcat openshift

我将一个java应用程序上传到OpenShift应用程序。 它有以下墨盒:

  • Tomcat 7(JBoss EWS 2.0)
  • MySQL 5.5
  • phpMyAdmin 4.0

Rhc,git和ssh都正常工作。但是当我运行我的应用程序时,它无法访问我的数据库中的表。当我在计算机中安装了所有内容时,一切正常,当我尝试部署到OpenShift时出现了这个问题。

我得到以下例外:

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'mytomcatapp.ordenesDeCompra' doesn't exist

这是我在我的应用程序中连接数据库的方式:

private static final String host = System.getenv("OPENSHIFT_MYSQL_DB_HOST");
private static final String port = System.getenv("OPENSHIFT_MYSQL_DB_PORT");
private static final String stringConexion = String.format("jdbc:mysql://%s:%s/mytomcatapp", host, port);

private static Connection conexion;

public static void conectar() {

    try {
        Class.forName("com.mysql.jdbc.Driver");
        conexion = DriverManager.getConnection(stringConexion, "myUser", "myPassword");

    } catch (ClassNotFoundException | SQLException ex) {
        Logger.getLogger(ConexionBD.class.getName()).log(Level.SEVERE, null, ex);
    }
}

然后在控制器中,我使用先前创建的连接执行简单查询。

当我用ssh连接到mysql时,我可以看到我的数据库和我的表存在:

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| mytomcatapp        |
| performance_schema |
+--------------------+
4 rows in set (0.00 sec)

mysql> use mytomcatapp; go; show tables;
Database changed
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'go' at line 1
+-----------------------+
| Tables_in_mytomcatapp |
+-----------------------+
| jurisdicciones        |
| ordenesdecompra       |
| proveedores           |
| subtitulos            |
| tiposcontratacion     |
+-----------------------+
5 rows in set (0.00 sec)

1 个答案:

答案 0 :(得分:3)

您的表名有错误,请注意,在Unix上,SQL中的表名称区分大小写,即使在Windows上它们可能不是(检查:Are table names in MySQL case sensitive?以获得解释)

因此,您应该访问ordenesDeCompra

,而不是访问ordenesdecompra