Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on an old classic asp project. The database is structured terribly, each row is well in excess of limits (18 different nvarchar(2000), numerous nvarchar(256), and more...)

I made a small fix which changes the order in which the fields are retrieved from the recordset.

What I am now seeing has me mystified. Fields that do initially exist disappear as I use other fields.

For Example, I have:

if(RS.Fields('field1').value){
   //do something
}
if((RS.Fields('field2').value){
   //do something
}

In some of my results, field2 is not showing up when checked (after field1), but if I check immediately before field1, it does exist.

Is this a known behavior? Is there a work around?

share|improve this question

1 Answer

It seems that the problem was two fold:

One, the order the fields appear in code needed to match up with the order they were in the DB. Yeah, don't know, but it works.

Two, the fields need to be immediately loaded into variables.

if(RS.Fields('f1')){
   doWork(RS.Fields('f1'));
}

does not work, but

var f1 = RS.Fields('f1');

if(f1){
   doWork(f1)
}

does.

share|improve this answer
Known issue with Access database that was never meant to be used in web environment in the first place. For the record, the "culprit" is the nvarchar(2000) or any such field with more than 256 length - classic ASP have problem handling such fields. – Shadow Wizard Aug 19 '12 at 7:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.