My organisation is considering moving reporting and data analysis to Google Bigquery from MySQL. Some of the tables in MySQL are populated using PDO in PHP, after reading data from third party APIs.
Originally, I created my scripts on MS SQL database and migrating to MySQL was as easy as just changing the connection parameters, but can that be done for Bigquery as well? Are there any PDO wrappers available for Bigquery?
I googled and saw some direct BQ APIs to load tables and stuff, but was not able to find a more scalable solution for PHP where I could just migrate my existing code.