我正在运行一个PHP Heroku应用程序,它使用ClearDB MySQL数据库。我需要对数据库进行备份。我一直在寻找方法,但找不到。谢谢。
答案 0 :(得分:0)
根据建议,您可以执行以下操作:
PROJECT(test)
CMAKE_MINIMUM_REQUIRED (VERSION 2.6)
SET(CMAKE_CXX_FLAGS "-g -Wall -Werror -std=c++11")
ADD_EXECUTABLE(main main.cpp)
TARGET_LINK_LIBRARIES(main proto ${PROTOBUF_LIBRARY})
find_package(Protobuf REQUIRED)
set(PROTOBUF_IMPORT_DIRS "../proto")
set (msgs ${PROTOBUF_IMPORT_DIRS}/communications.proto)
PROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS ${msgs})
add_library(proto SHARED ${PROTO_SRCS})
target_link_libraries(proto ${PROTOBUF_LIBRARY})
看起来像
mysqldump -u<username> <DATABASENAME> --host=<host-url> -p > <afilename>
它会询问您的密码。