PDA

View Full Version : From SQL to HTTP post?


khwiii
2007-08-09, 10:59 AM
So I have a SQL (Sybase) DB that we recieve "reads" into. These reads contain information such as reader, datetime, employee id ..... I need the ability to post some of the information contained in this table and another table (cross referenced by said employee Id) to an http post. I need this to happen on insert of information to said table. What'd be the best route to do this? Can an http post be done with just a stored proceedure in SQL or would I need another program to accomplish this?

Thanks.

Vault Dweller
2007-08-09, 03:00 PM
Wish I could help, but I'm just starting to learn about SQL, and this is a question I was actually wondering about myself.

WetWired
2007-08-09, 06:17 PM
Well, I don't think this is something you can accomplish through SQL, it's going to be DB engine specific. You could always write a cron job to periodically check for new records and post them.