Skip to Main Content

MySQL Database

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

PHP 5.6 driver for MySQL 8

3720642Dec 6 2018 — edited Dec 7 2018

I've been looking for a driver to use, but I haven't had any luck so far. Is there any driver for PHP 5.6 (running on CentOS 7.1) to connect on MySQL 8? Or the only way to do so is with a newer version of PHP?

Cheers.

Comments

Mannamal-Oracle
Hi Wolfgang,

Are you looking to load data into 10g or 11g?

If you are looking at 11g, sample files are located at $ORACLE_HOME/md/demo/network/rdf_demos/ (as specified in the documentation). This location contains a ctl file and a sample sql file that uses that ctl file. You could modify the sample sql file (bulkload.sql) to load multiple files (please refer to the SQL*Loader documentation for more details).

Detailed instructions on the load process are in section 1.7 of the 11g Oracle Database Semantic Technologies documentation. The Oracle Technology Network includes links to the 11g documentation.

Melli
609276
Hi Melli,

Thanks for your answer. I am loading data into 11g.
I found the samples. I was also looking for an easy way for uploading all files within a directory, which I found out is not possible directly (i.e. it is not possible to specify a directory in the ctl file). So there are two possible solutions to this:
1.) Create a list of all files in the directory (on Windows with "dir/b *.nt > files.dat"), prefix every line with "INFILE", surround the filenames with a paragraph and include all that in the ctl file.
2.) It should also be possible to let a SQL-script create the list ("host dir/b *.nt > files.dat"), load this list into a temp-table and iteratively invoke the sqlldr.

For me solution 1 worked perfectly.

However when trying some sample queries (the LUBM test queries) I observed some very strange behaviour of SEM_MATCH (see thread "Missing triples in SEM_MATCH query")

Wolfgang
1 - 2

Post Details

Added on Dec 6 2018
1 comment
3,236 views