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 |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2005-08-15 : 07:35:42
|
| Lorenzo writes "In a program I´ve made, it returned the following error:01000: [Microsoft] [ODBC SQL Server Driver] [SQL Server] The statementent has been terminated.Please, could you tell me what it means? Thanks" |
|
|
timmy
Master Smack Fu Yak Hacker
1242 Posts |
Posted - 2005-08-15 : 07:46:32
|
| It might help to post the bit of code that triggered the error. Unfortunately this is the more or less generic error message that comes back.Tim |
 |
|
|
simondeutsch
Aged Yak Warrior
547 Posts |
Posted - 2005-08-15 : 10:47:55
|
| You might try looping your errors collection. That message is usually the last or possibly the first message ADO returns, but the other messages will give you more accurate information. See Connection.Errors.Count for the number of error messages returned and Error(x).Description for each error.Sarah Berger MCSD |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2005-08-16 : 01:57:07
|
| Debug the application and post the query where that error occursMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|