dolt sql-server
in the repository directory. The dolt sql-server
command starts a MySQL compatible server for the Dolt database on port 3306 with no authentication. The database name is the name of the repository directory but with dashes (-
) replaced with underscores (_
). So dolt-test
repository name would become dolt_test
database name. See this documentation for more configuration details.pip
.mysql
Node library.mysql-connector-java
. For our test we use the architecture independent build.brew install mysql-client
. For the Ubuntu tests, we apt install -y libmysqlclient-dev
. We then use pkg-config
to generate the proper CFLAGS
and LDFLAGS
.mysql-connector-cpp
. Getting it to work correctly required we checkout and build mysql-connector-cpp using the proper flags and dependencies. This was a relatively heavy lift but you can use our build logic as an example.mysql/ruby
.