Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
shajimanjeri
Posting Yak Master
179 Posts |
Posted - 2008-10-27 : 02:24:16
|
| Dears,Is there any way to pass like http links through sql query?shaji |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-10-27 : 02:41:42
|
| http links as parameter? then you can use varchar parameters for that. Can you elaborate on what you're trying to achieve please? |
 |
|
|
shajimanjeri
Posting Yak Master
179 Posts |
Posted - 2008-10-27 : 02:58:49
|
| My target is: If any new record is inserted on my table then one sql query (like trigger query) will take this record and need to pass through an http link. So all the inserted values will be pass through this http to another server. Is this way is possible by using sql? |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-10-27 : 03:06:34
|
| its better to do the navigation part using your front end application. You can use a stored procedure to retrieve the required values back to application and then form a string there using values received and navigate to the page. |
 |
|
|
|
|
|