If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Informix > Parameterized query to accept comma separated string

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-15-10, 15:18
chittu chittu is offline
Registered User
 
Join Date: Sep 2008
Posts: 5
Parameterized query to accept comma separated string

Hi All,

I have one query which runs successfully through dbaccess, when same being used in curser, it gives -1213 error. Here is example:

select network_id,NVL(total_calls, 0), fragment_date from cell_statistics
where network_id in ('4','5') and time_id in ( SELECT datetime_id from
datetimes WHERE extend(date_and_time,
year to day) = extend (today-7, year to day) )
ORDER BY network_id,fragment_date


when i was using network_id = 4 , it was working fine, but now I need multiple network_id to be passed so I modified the code inside IN, now it is not working.

Please help me out, and let me know, if you need any more info.

Thanks in advance.

Regards
chittu
Reply With Quote
  #2 (permalink)  
Old 05-16-10, 20:02
Luis Santos Luis Santos is offline
Registered User
 
Join Date: Jun 2009
Location: Lisboa, Portugal
Posts: 51
Hi Chittu,

That error is "A character to numeric conversion process failed". It seems you have some field on your table is not corresponding with your sql script. Try to review your script and confirm that is corresponding with your type table fields...

Hope it helps.
__________________
LS
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On