Sha256: 36c2bad00b565ba77cec9b61ea1881fbf43a022f76ba021b2857decd4bc2051c

Contents?: true

Size: 840 Bytes

Versions: 24

Compression:

Stored size: 840 Bytes

Contents

Before running unit test:

1. Connect to Oracle as sys
   ```shell
   $ sqlplus sys/<password_of_sys> as sysdba
   SQL>
   ```
2. Create user ruby
   ```sql
   SQL> CREATE USER ruby IDENTIFIED BY oci8 DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp;
   SQL> alter user ruby quota unlimited on users;
   ```
3. Grant the privilege to connect and execute.
   ```sql
    SQL> GRANT connect, resource, create view, create synonym TO ruby;
    SQL> GRANT execute ON dbms_lock TO ruby;
    ```
4. Connect as ruby user.
   ```shell
   $ sqlplus ruby/oci8
   SQL>
   ```
5. Create object types
   ```sql
   SQL> @test/setup_test_object.sql
   SQL> @test/setup_test_package.sql
   ```
6. change $dbname in test/config.rb.

Then run the following command:
```shell
$ make check
```
or
```
$ nmake check   (If your compiler is MS Visual C++.)
````

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
ruby-oci8-2.2.14 test/README.md
ruby-oci8-2.2.13-x86-mingw32 test/README.md
ruby-oci8-2.2.13-x64-mingw32 test/README.md
ruby-oci8-2.2.13-x64-mingw-ucrt test/README.md
ruby-oci8-2.2.13 test/README.md
ruby-staci-2.2.9 test/README.md
ruby-oci8-2.2.12-x64-mingw32 test/README.md
ruby-oci8-2.2.12-x64-mingw-ucrt test/README.md
ruby-oci8-2.2.12-x86-mingw32 test/README.md
ruby-oci8-2.2.12 test/README.md
ruby-oci8-2.2.11 test/README.md
ruby-oci8-2.2.11-x64-mingw-ucrt test/README.md
ruby-oci8-2.2.11-x64-mingw32 test/README.md
ruby-oci8-2.2.11-x86-mingw32 test/README.md
ruby-oci8-2.2.10-x64-mingw-ucrt test/README.md
ruby-oci8-2.2.10 test/README.md
ruby-oci8-2.2.10-x86-mingw32 test/README.md
ruby-oci8-2.2.10-x64-mingw32 test/README.md
ruby-oci8-2.2.9 test/README.md
ruby-oci8-2.2.9-x86-mingw32 test/README.md