- Posts: 3
- Thank you received: 0
Hi,
what type of DB you have? (MySQL, MySQLi, Oracle, MS-SQL, MS-SQL2000)
Can you send me table structure with some inserts, i will check it in debug mode.
This email address is being protected from spambots. You need JavaScript enabled to view it.
Best regards,
Viljem
Please Log in or Create an account to join the conversation.
Hi
You have mail
Thanks
Please Log in or Create an account to join the conversation.
Many thanks now working
Please Log in or Create an account to join the conversation.
can you explain what you did to fix it?
I'm having the same problem -- the grid indicates there are records and when I filter/search, the number of records reflects the search criteria, but nothing is showing up in the grid results.
Please Log in or Create an account to join the conversation.
Hello,
Usually the problem is in field names of a table if they contain characters like '-', ' ', '+', '/'... (e.g. 'e-mail', 'my field').
The solution is to create a view like
CREATE VIEW MY_TABLE_VIEW AS
SELECT
`e-mail` AS email
`my field` AS myfield
FROM MY_TABLE
and then display this view with TableJX
Regards,
Bostjan
Please Log in or Create an account to join the conversation.