Actually I use the following sentence read on another question in this page:

SELECT UPDATE_TIME
FROM   information_schema.tables
WHERE  TABLE_SCHEMA = 'dbname'
   AND TABLE_NAME = 'tabname'

But I think that it is using a lot of process time, it will be more easy if mysql-server sends me a signal when the table is updated so I can wait until my program detects that signal.

Is this possible? I'm programming in C.

Thank you very much.

link|improve this question

80% accept rate
1  
have much to do with signal. So, I'm retagging it, don' add tags for the sake of tags. – Dhaivat Pandya Aug 4 '11 at 14:50
feedback

1 Answer

up vote 4 down vote accepted

You can use a trigger combined with a UDF progammed in C(++) to do the notification.
Here's dummy code.

DELIMITER $$

CREATE TRIGGER ai_table1_each AFTER INSERT ON table1 FOR EACH ROW
BEGIN
  CALL ChangeNotification('table1', 'insert', NEW.id);
END $$

DELIMITER ;

You'll have to do a trigger for insert/delete and update. 3x per table.
You cannot add a trigger to the system tables IIRC, because these are really views and not actual tables.

You'll need to write a UDF in C(++) called changenotification that does the notification for you.

Links:
http://dev.mysql.com/doc/refman/5.0/en/adding-udf.html
http://www.mysqludf.org/
http://dev.mysql.com/doc/refman/5.0/en/triggers.html
http://dev.mysql.com/doc/refman/5.0/en/getting-unique-id.html

link|improve this answer
This sounds interesting, I think that it makes the trick, thank you very much. I will use the trigger on a table created by me not to a system table(view), but thanks for the advice. – Vaul Aug 4 '11 at 15:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.