gpt4 book ai didi

mysql - 玩转框架 MySQL 和 EBean

转载 作者:行者123 更新时间:2023-11-30 22:54:10 25 4
gpt4 key购买 nike

所以我正在尝试在我的服务器上部署我的 play Framework 2.3.5。我已将它与 MySQL 数据库(最新版本)连接并使用 EBean 进行持久化。

我的 1.sql 脚本如下所示:

# --- Created by Ebean DDL
# To stop Ebean DDL generation, remove this comment and start using Evolutions

# --- !Ups

create table input (
id varchar(255) not null auto_increment,
text TEXT not null,
mode varchar(255) not null,
theme varchar(255) not null,
title varchar(255) not null,
PRIMARY KEY (id)
)
;




# --- !Downs

drop table input;

出于我发布此错误消息的原因:

[info] play - database [default] connected at jdbc:mysql://localhost/pastedemo
[error] play - 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 'sequence input_seq' at line 1 [ERROR:1064, SQLSTATE:42000]
Oops, cannot start the server.
@6kaijj99g: Database 'default' is in an inconsistent state!

有人能告诉我我的错在哪里吗? :)

最佳答案

好的,我解决了这个问题。这很容易。

当您想在生产模式下使用您的应用程序时,您必须删除 1.sql。然后使用 activator dist 打包您的应用程序并将其上传到您的服务器上。 不要再次使用 run 测试它。 之后您可以部署它并且它可以工作。

关于mysql - 玩转框架 MySQL 和 EBean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27124183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com