Query Won't Run
Posted: Mon 19 Dec 2005 21:48
I'm having a strange problem with a query. The query looks like this:
select ClientName, ConversionJournal, UnsubSQL, RecordModDateField, FailedMailJournal, idField, idIsNumeric, TextOnlySQL, FailedMailSQL, MailJournal, JournalDBType, JournalConnString, ClientDBType, ClientConnString, EmailField, PrimaryAddressTable, NetPathToAttachLib, MessagesSent,LowerLimit,MidLimit,UpperLimit,BaseCost,MidCost1,MidCost2,MinCost,ErrorsTo,BouncesTo,POPServer,PopAccount,PopPW,MailServerIP,SystemMessagesFrom, WebSiteName from clients, SMTPservers where SMTPservers.id=clients.PopCleaner_SMTPServers_fk and clientid=1
It runs cleanly and returns a single record in MySQL Query Browser. But in my application it throws a System.IndexoutofrangeException error: "Index was outside the bounds of the array" in Corelab.MySQL.dll.
The bizarre thing is that I can take the same query, change the clientid to a value other than 1 (the last character in the sql) and it works perfectly. This same query also works under VB.Net 1.1 with Visual Studio 2003.
Art
select ClientName, ConversionJournal, UnsubSQL, RecordModDateField, FailedMailJournal, idField, idIsNumeric, TextOnlySQL, FailedMailSQL, MailJournal, JournalDBType, JournalConnString, ClientDBType, ClientConnString, EmailField, PrimaryAddressTable, NetPathToAttachLib, MessagesSent,LowerLimit,MidLimit,UpperLimit,BaseCost,MidCost1,MidCost2,MinCost,ErrorsTo,BouncesTo,POPServer,PopAccount,PopPW,MailServerIP,SystemMessagesFrom, WebSiteName from clients, SMTPservers where SMTPservers.id=clients.PopCleaner_SMTPServers_fk and clientid=1
It runs cleanly and returns a single record in MySQL Query Browser. But in my application it throws a System.IndexoutofrangeException error: "Index was outside the bounds of the array" in Corelab.MySQL.dll.
The bizarre thing is that I can take the same query, change the clientid to a value other than 1 (the last character in the sql) and it works perfectly. This same query also works under VB.Net 1.1 with Visual Studio 2003.
Art