From: Gerald Venzl Date: Sun, 19 Nov 2023 06:28:53 +0000 (-0700) Subject: Upgrade to Oracle Database 23c Free X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8b9b2b37485abc0b9066ccb23a1af48cef756ce;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Upgrade to Oracle Database 23c Free Signed-off-by: Gerald Venzl --- diff --git a/README.unittests.rst b/README.unittests.rst index f3cd4d6363..85672e1001 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -97,8 +97,8 @@ a pre-set URL. These can be seen using --dbs:: mssql mssql+pyodbc://scott:tiger^5HHH@mssql2017:1433/test?driver=ODBC+Driver+13+for+SQL+Server mssql_pymssql mssql+pymssql://scott:tiger@ms_2008 mysql mysql+mysqldb://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 - oracle oracle+cx_oracle://scott:tiger@oracle18c - oracle_oracledb oracle+oracledb://scott:tiger@oracle18c + oracle oracle+cx_oracle://scott:tiger@oracle23c + oracle_oracledb oracle+oracledb://scott:tiger@oracle23c pg8000 postgresql+pg8000://scott:tiger@127.0.0.1:5432/test postgresql postgresql+psycopg2://scott:tiger@127.0.0.1:5432/test postgresql_psycopg2cffi postgresql+psycopg2cffi://scott:tiger@127.0.0.1:5432/test @@ -307,11 +307,11 @@ be used with pytest by using ``--db docker_mssql``. **Oracle configuration**:: # create the container with the proper configuration for sqlalchemy - docker run --rm --name oracle -p 127.0.0.1:1521:1521 -d -e ORACLE_PASSWORD=tiger -e ORACLE_DATABASE=test -e APP_USER=scott -e APP_USER_PASSWORD=tiger gvenzl/oracle-xe:21-slim + docker run --rm --name oracle -p 127.0.0.1:1521:1521 -d -e ORACLE_PASSWORD=tiger -e ORACLE_DATABASE=test -e APP_USER=scott -e APP_USER_PASSWORD=tiger gvenzl/oracle-free:23-slim # enter the database container and run the command docker exec -ti oracle bash - >> sqlplus system/tiger@//localhost/XEPDB1 <> sqlplus system/tiger@//localhost/FREEPDB1 <