We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
In my SQL database i have a table with Column names
Columname1.VI
Columname2.VI
When i add these columns and create a table the last .VI gets dropped and it cannot find the data in the mySQL database of course. This is a bug!
See Screenshot before and after creating table.
Hello again A3igner.
Yes, I see. I tried it locally, and it is doing the same thing on our end. This is because the dot ( . ) is a delimiter that usually represents a new column, and it is trying to search for columns within the existing column.
Like mentioned in our documentation:
Please note that MySQL query constructor is not an ‘ultimate generator’, it should be treated as helper for constructing a suggestion of a query, by trying to ‘guess’ what you want. We are constantly working to improve it, but SQL is such a complicated and flexible language that fully automating the process for constructing queries is hardly possible. Consequently, the more complicated your request is, the higher is the probability that it will not return exactly what you need. Play around with the resulting query to achieve better results.
So, with this in mind, you can modify the query it generates, and add the ".VI" to the columns that contain it, and the table will be generated successfully (see attachment).
Or, you can simply generate your own query by creating the table using the first option (Create a table linked to an existing data source):
Best regards.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
why does it work in SQL then?
In SQL the Column Name is already in this format. All the Plugin is doing is importing it. So it shouldn’t manipulate the column heading!
This is a bug for sure!!!
Please fix your bug.
Well, A3igner, it is working in our plugin as well if you pass the IDs correctly.
The thing is that you're using the SQL Query Constructor, and I must repeat:
MySQL query constructor is not an ‘ultimate generator’, it should be treated as helper for constructing a suggestion of a query, by trying to ‘guess’ what you want. We are constantly working to improve it, but SQL is such a complicated and flexible language that fully automating the process for constructing queries is hardly possible.
It trying to guess what you want is what's causing the error - it's guessing that a second delimiter is actually a column within a column - that's why it's reporting that it has no values - it's looking for something that's not actually there.
I agree that it shouldn't manipulate the column heading, and I will forward this to our development team, so they can work on a fix for some of the future releases.
Best regards.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
yes exactly.
In the meantime I will work with the add * query as you correctly mentioned!