How to load data from Glassfrog to MySQL Destination
Learn how to use Airbyte to synchronize your Glassfrog data into MySQL Destination within minutes.


Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
Setup Complexities simplified!
Simple & Easy to use Interface
Airbyte is built to get out of your way. Our clean, modern interface walks you through setup, so you can go from zero to sync in minutes—without deep technical expertise.
Guided Tour: Assisting you in building connections
Whether you’re setting up your first connection or managing complex syncs, Airbyte’s UI and documentation help you move with confidence. No guesswork. Just clarity.
Airbyte AI Assistant that will act as your sidekick in building your data pipelines in Minutes
Airbyte’s built-in assistant helps you choose sources, set destinations, and configure syncs quickly. It’s like having a data engineer on call—without the overhead.
What sets Airbyte Apart
Modern GenAI Workflows
Move Large Volumes, Fast
An Extensible Open-Source Standard
Full Control & Security
Fully Featured & Integrated
Enterprise Support with SLAs
What our users say

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

Chase Zieman

“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”

Rupak Patel
"With Airbyte, we could just push a few buttons, allow API access, and bring all the data into Google BigQuery. By blending all the different marketing data sources, we can gain valuable insights."
How to Sync to Manually
Begin by reviewing the data export options available within GlassFrog. Typically, GlassFrog allows users to export data in formats such as CSV or Excel. Check the documentation or your account settings to understand what data can be exported and in which formats.
Log into your GlassFrog account and navigate to the section where you can export data. Choose the appropriate data set and export it in a CSV format, as this is a common format that can be easily processed for importing into a MySQL database. Save the exported file to a known location on your local machine.
Ensure that you have a MySQL database set up where the data will be imported. Create the necessary tables that match the structure of the data exported from GlassFrog. Use SQL statements to define the schema, specifying data types and constraints that align with the exported data structure.
Open the exported CSV file in a spreadsheet application or a text editor. Review the data for any inconsistencies or errors and make necessary corrections. Ensure that the data types match the schema defined in your MySQL database. If necessary, transform the data format to fit into the MySQL tables (e.g., converting date formats).
Install MySQL client tools on your local machine if not already installed. Ensure you have the necessary access credentials to connect to your MySQL database. Test the connection using a command-line tool like MySQL Shell or a GUI-based client like MySQL Workbench.
Use the `LOAD DATA INFILE` command to import the data from the CSV file into the MySQL database. This command reads rows from a file into a table at a very high speed. Execute the following command in your MySQL client, adjusting the file path and table name as necessary:
```sql
LOAD DATA INFILE '/path/to/exported_data.csv'
INTO TABLE your_table_name
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n'
IGNORE 1 ROWS;
```
Ensure that the file path is accessible to the MySQL server and adjust field and line terminators to match your CSV file.
After importing the data, run SQL queries to verify that the data in your MySQL database matches the data exported from GlassFrog. Check for completeness and integrity by comparing row counts and random samples of data between the source file and the MySQL table. Make any necessary corrections if discrepancies are found.
By following these steps, you can successfully move data from GlassFrog to a MySQL destination without relying on third-party connectors or integrations.