Programming Matters

My thoughts on all things technical, programming and otherwise

How null breaks polymorphism: or the problem with null: part 1

Filed under: Development Philosophy, Programming — by Steve Riley at 12:19 am on Sunday, December 31, 2006

Preface: After talking to a number of people I realize that somehow I managed to misrepresent myself with respect to type systems in this article. This article is an attack on null, and to point out that null is still problematic in many (if not all) strongly typed languages. Many who prefer strong types and static types feel they are more immune to certain runtime type related inappropriate behaviors. I feel the ability to use null in most languages in place of an object breaks polymorphism in the most extreme possible way. I am in no way implying that dynamic or weak type systems are better at handling these issues. As for me - I prefer languages with stronger compile time type checking.

This is a difficult concept for a lot of died in the wool strong staticly typed OO programmers to fully digest and accept. There is an immense sense of pride in the strong staticly typed community about the fact that unlike untyped languages, strong staticly typed languages protect them from run-time errors related to type mismatches and unavailable methods. Unless you do a dynamic type cast (frowned upon heavily) you should be safe from at least this broad class of error. But they are wrong. Type mismatches and unavailable methods occur all the time in strong staticly typed languages. And it is a common form on runtime surprise. What causes this common problem: the null which can be used with any type yet breaks polymorphism with every single one.

Unlike types in loosely typed languages the null is guaranteed not work polymorphicly thus requiring a specific type check. Did I say type check? But I have no dynamic casts, I’m following all the rules. Why should I have any type checks? Checking for null is a type check. It’s the mother of all type checks. Instead of having code littered with conditional checks for types and branches based on those types (an OO worst practice) you have code littered with conditional checks for null having branches based on whether it is null or not.

Now granted, life in a world without nulls isn’t easy and I use null often myself. It’s too tempting to use this magic value instead of writing code more appropriately. Some will mention the null object design pattern that “does nothing” with pride as a solution to this problem. These are in fact polymorphic. The only issue is that null objects only work in special circumstances. If you really don’t have a thing you shouldn’t be pretending you do and having it do nothing. You should have a separate chain of logic that doesn’t use the thing you don’t have.

I have talked to a number of coders that think that removing null from a majority of their code would be difficult to impossible. An difficult to grok kind of problem perhaps but intractable, no. Consider the following function:

int DoSomethingSpecific( int x, int y, int z);

Now I will asked the magic question. Do you check z for null in case you don’t have it? (or x or y for that matter). In C++ that isn’t even possible because it’s passed by value. If an appropriate default exists for z you may set z to that default before it is called. However plenty of times that concept isn’t the one you are looking for. What do you do? You simply write another function that doesn’t take z.

int DoSomethingSpecific(int x, int y);

Now let’s use generic objects:

int DoSomethingSpecific(object x, object y, object z);

int DoSomethingSpecific(object x, object y);

Using this approach doesn’t break polymorphism. You only call the appropriate function when you actual have the parameters in question.

Of course this brings us back to a more fundamental problem. The concept of null is so burned in to most OO languages that visual inspection of code reveals that most any object should be nullable and thus checked for null. C++ has a way around this with references that can not be null or checked for null (yes I know many compilers will let you assign null but you make clear your intent in using a reference:it should not be null). The C++ reference being used this way is at best an afterthought in the language. These references can’t be reassigned and thus are limited to incoming parameters on function calls in many cases.

Even if you create a class which prohibits non-null assignment casual readers of your code in many languages will miss this fact and do gratuitous checks for null anyways; defeating much of the purpose. The key is supporting syntax that makes clear the fact that an object can not be null. But that discussion is for another day.

In part two of this article I will explain many of the misconceptions and supposedly intractable issues related to removing null. It’s not as hard as you might at first think. I will also further explore the syntax issue, or without language support at least a possible naming convention.

del.icio.us Digg Reddit dzone Live

20 Comments »

101

Comment by Oliver

December 31, 2006 @ 12:42 am

I agree with you, null is a plague upon all our houses :-/

Personally I would like a language in which null has to be explicitly allowed (Haskell basically does this — the Maybe data type basically allows nullable values). I dare say if anyone eventually creates a such a language it will probably default to allowing null though :(

–Oliver

102

Comment by eulerbernays

December 31, 2006 @ 1:20 am

Agreed but you can do things to limit the problems. Its a good practice as a team rule to return empty objects where null might come into play. For instance collections, return an empty set if there are no records. Then, on the consumer side the code checks for a count. Same with other types. Strings, return empty string “” not null, or int return 0 or -1. Rules setup front limit the wacky ways of dealing with it.

106

Comment by Ricky Clarkson

December 31, 2006 @ 5:31 am

A commenter mentioned the Maybe type from Haskell. I cover its implementation and use in Java on my blog.

I find it very useful to disallow null, minimise the places where I think it is needed, then convert those from ‘might be nulls’ to Maybes. There still are some cases where null is useful, simply because Java doesn’t have tail-call optimisation, but only as intermediate values inside a method, not as fields of an object.

108

Comment by Reg Braithwaite

December 31, 2006 @ 7:58 am

Null is an artefact of Java’s “backward compatibility” with C++. C++ ‘inherited’ null from C, and if you look at C and C++ programs, mistakenly dereferencing null pointers is a significant problem.

Compare and contrast null to the Undefined Object in Smalltalk or nil in Ruby. I think you’ll agree that it was one of those “let’s win over the C++ programmers” decisions that bites Java where it sits down.

109

Comment by Jonathan Allen

December 31, 2006 @ 11:16 am

I dream of a day where reference variables, parameters, and return types can be tagged as nullable or not nullable like in SQL. I think 75+% of runtime errors I see in large projects (20+ developers) are NullReferenceException.

111

Comment by Isaac Gouy

December 31, 2006 @ 12:48 pm

Please don’t use vague terms like loosely typed, or confuse dynamically type checked languages with untyped languages, or conflate what might be true of Java or C++ with what’s true of the very different type systems available in other statically type checked languages.

The difficult concept is that support for dynamic type checking by-itself is not what classifies a language as dynamically type checked.
We classify a language as dynamically type checked when it does not support static type checking and does support dynamic type checking.
We classify a language as statically type checked when it does support static type checking - the language might also support dynamic type checking.

Checking for null is a type check
Is checking for 467 a type check?

Two of the issues you brought up are
- separate non-null and null types
- dispatch on null at runtime

Here’s a statically type checked language code snippet using a List type that excludes nulls and a ?List type that includes nulls, and using dispatch on null at runtime:

<T> int lazySize(?List<T> list);
lazySize(List list) = list.size();
lazySize(null) = 0;

void main(String[] args){
let a = new LinkedList();
a.add(500);
println(a.lazySize());

let b = new LinkedList();
b.add("Five Hundred");
println(b.lazySize());

let c = null;
println(c.lazySize());
}

$ /opt/nice-0.9.12/bin/nicec --sourcepath .. nicenull -a t.jar
nice.lang: parsing
nicenull: parsing
nicenull: typechecking
nicenull: generating code
nicenull: linking
nicenull: writing in archive
nice.lang: writing in archive

$ java -jar t.jar
1
1
0

The Nice Programming Language

112

Comment by Steve Riley

December 31, 2006 @ 1:25 pm

Isaac,

You are absolutely right. For purposes of this writeup I realize I should have avoided talking about strong vs. loose and static vs. dynamic at all. It really doesn’t make a difference.

I think null is an important concept though - one thing I would like is clear language syntax when a type allows it or doesn’t. When an object is dereferenced syntax revealing whether it is nullable would be a definite plus, IMHO. At the very least the compiler should complain when a null check is inserted and “shouldn’t be allowed” by a non-null type.

C++ supports separate null and non-null types out of the box - not as robustly as I’d like perhaps. Through templates it certainly does. F# also supports non-null types out of the box as do others.

This article was more about clearing up misconceptions. In my mind null shouldn’t be able to do anything - it is null and there can be no appropriate behavior for it by definition. Having a null “fall through” behavior that happens to be benign seems wrong to me.

Null is not polymorphic because it can’t reasonably by expected to fill the contract required of the class it supposedly represents. If it does it should be called something other than null. Creating dynamic dispatch on null seems as flawed to me as the null object pattern. Although at least the null object pattern is a genuine class and easily discernible from null itself.

113

Comment by Steve Riley

December 31, 2006 @ 1:26 pm

Oliver,

Haskell certainly seems interesting to me - I’ll have to give it a look. It’s popped on my radar over the years and I’ve always been curious about all the excitement it has generated.

114

Comment by Steve Riley

December 31, 2006 @ 1:29 pm

Eulerbernays,

I especially like the idea of returning empty sets where appropriate. This makes it very clear what needs to be done. An empty set can be appropriately handed.

I’m generally against magic numbers (in theory) for the same reason I dislike null. But when I’m prototyping I certainly have dropped a -1 of two into code.

115

Comment by Steve Riley

December 31, 2006 @ 1:32 pm

Ricky,

I agree when null is appropriate it is sometimes very useful as other methods may prove too cumbersome. Having the choice of using non-null types is useful across the board. I really do like C++’s . vs -> syntax in making things very obvious. When you use a dot operator you know that you shouldn’t be checking for null. It may be little more than syntactic sugar - but it is nice.

116

Comment by Steve Riley

December 31, 2006 @ 1:35 pm

Johnathan,

I agree and this is one of the main points I’m pushing. When a huge number of runtime errors are because of not handling nulls properly it seems that the language could afford to help out in every way it can to allow you to prevent it through explicit type definition and syntactic clues.

120

Comment by Isaac Gouy

December 31, 2006 @ 5:15 pm

Steve Riley replied …one thing I would like is clear language syntax when a type allows it or doesn’t
Aren’t ?List and List clear enough?

Steve Riley replied At the very least the compiler should complain when a null check is inserted and “shouldn’t be allowed” by a non-null type.
void main(String[] args){
?List d = new LinkedList();
if (d == null) println("Should not be null");

List e = new LinkedList();
if (e == null) println("Should not be null"); // line 6
}

$ /opt/nice-0.9.12/bin/nicec --sourcepath .. nicenull -a t.jar
nice.lang: parsing
nicenull: parsing
nicenull: typechecking

~/tmp/nicenull/test.nice: line 6, column 8:
warning: Comparing a non-null value with null
nicenull: generating code
nicenull: linking
nicenull: writing in archive
nice.lang: writing in archive
compilation completed with 1 warning

Steve Riley replied In my mind null shouldn’t be able to do anything - it is null and there can be no appropriate behavior for it by definition.
By the definition you have in mind, other people may have different definitions in mind :-)
We still need some argument that the definition you have in mind is in a way more useful than other possibilities.

121

Comment by Jonathan Feinberg

December 31, 2006 @ 6:21 pm

See also F#/OCaml 'a option, a type that accepts the values None and Some(foo), where foo is of type ‘a.

122

Comment by Steve Riley

December 31, 2006 @ 9:28 pm

Issac,

Your example does show the compiler catching the null and giving a warning. I think null is such a fundamentally used paradigm that I’d love to see a different syntax imposed at each reference as well though. Similar to C++.

With respect to null I stand by my argument. When you don’t have something, having it do something (even if it only benignly pretends to do nothing) seems logically inconsistent.

Great comments though - and you’ve turned me on to another language I need to take a look at.

132

Comment by Jude

January 2, 2007 @ 10:44 pm

I agree that null can cause a lot of problems , and an inherent NULL Pattern in the language subsystem would help a lot . It would be so nice , if all objects could have their NULL counter parts pre defined . But the Time being Null Pattern still comes to the rescue .

133

Comment by Steve Riley

January 2, 2007 @ 11:07 pm

Jude,

The NULL pattern can be useful in some cases - unfortunately not all though. The null pattern is only useful in those few cases where the existence of an object is truly decorative - meaning the block of code doesn’t logically break when the object doesn’t exist. Otherwise it just quietly breaks the intent of a code block without providing run-time or compile time errors. This can lead to even more difficult to track down problems later.

134

Comment by Sam

January 3, 2007 @ 10:59 am

I think this problem has been approached by languages in at least two ways. One is to make null an object like Ruby’s nil as stated by the earlier commenter. Null checks are replaced by respond_to? checks and even nil can have methods so as to fufill some interface if it needs to.

The other solution is like Haskell’s apprach where the type information is very strict. If a function can return null the common practice is to use a Maybe monad for the return type. Maybe is a container for either Nothing or Just a, where a is any other type.

On one hand, the Ruby type system keeps things very flat (non treelike) for the programmer. A type is essentially an object with methods or the lack of methods. Haskell, on the other hand, forces the programmer to think in terms of a type tree all the time.

In Ruby I get lots of nil errors. In Haskell I still have trouble getting anything done, I admit, but the compiler catches ALL type errors.

148

Comment by Enrique

January 12, 2007 @ 8:19 am

Yes, null must be forbidden.

A variable must have a defined value or not exist at all.

Unfortunatelly languages are not perfect. For example the try/catch forces to define variables outside the try block (probably with null value) just in case we want to manipulate them in the catch/finally blocks. Asigning visibility scope for try/catch/finally blocks is a big mistake, since error control ought to be orthogonal to the “normal flow”, but is a common mistake in many languages like C++, Java or C#.

Notice next pseudo code:

01 Connection con = null; ResultSet rs = null;
02 try{
03 Connection con = getConnection(....)
04 rs = con.execute....
05 }catch(SQLException ...){
06 ...
07 }finally{
08 if (con!=null) {
09 try{
10 con.close()
11 }catch(....){
12 logger.warn(....)
13 }
14 }

Without the nonsense visibility scope it would be:


01 try{
02 Connection con = getConnection(....)
03 ResultSet rs = con.execute....
04 }catch(SQLException ...){
05 ...
06 }finally{
07 try{
08 con.close();
09 }catch(....){
10 logger.warn(....)
11 }

3 lines shorter, no need for “if (rs!=null)”/”if (con!=null)” checking, and no null/undefined variables around !!!

154

Comment by Steve Riley

January 13, 2007 @ 1:15 am

Enrique,

Try, finally and scope….. - yep the scoping is stupid - you are wrong there. Take a look at the D programming language - this page explains exactly the argument you mention and the need for a \’dummy object\’ (or nulled reference in your case). Try and finally should share more than just scope but be colocated as well.

// snippet of D

Transaction abc()
{
Foo f;
Bar b;
f = dofoo();
scope(failure) dofoo_undo(f);
b = dobar();
return Transaction(f, b);
}
The dofoo_undo(f) only is executed if the scope is exited via an exception. The unwinding code is minimal and kept aesthetically where it belongs. It scales up in a natural way to more complex transactions.

That is much cleaner.

158

Comment by Wolfie

January 15, 2007 @ 3:36 am

I agree with Jon (above commentator) that a simple solution for Java is an SQL like declaratory such as null/not null to fix the leak, but as has been pointed out above that would have to be implemented in conjunction with a fix to the scoping of the try/catch/finally syntax [I hate that one].

As for method parameter redundancy its simply sloppy not to provide alternative forms of the method to avoid the scenario entirely.

I agree that there is some improvement required with null but its still a valid and useful part of the language and I don’t really see that it needs to be “type-safe” exactly. Sometimes you need to say in code somehow : “I don’t know this just yet” or “scrub that its not relevant” and null fits the bill just fine.

There is only so far a language can go to prevent sloppy/lazy development and I’m not keen on more core language bloat than is already present.

RSS feed for comments on this post. TrackBack URI

Leave a comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>

 

The Internet Marketing Experts at Adventual.com
comfort and privacy buy zoloft zoloft valium interaction ocd in children and zoloft topamax with zoloft valtrex in pregnancy side effects ultram er zoloft online alcohol and zoloft xanax azure ray lyrics dosage of valtrex connecticut vioxx class action pink oval pill 17 xanax identification cheapest generic silagra viagra phentermine zoloft together onset of action zoloft buy zovirax concerta and zoloft interactions on line zyban prescription lose weight and zyprexa xr 5 xanax zoloft and afib zoloft liver safety xanax ordering forum best online purchase information on zoloft weight loss yasmin best price valtrex women does viagra work peak time for xanax to work buying valium black outs and zoloft lupron zoloft fiorcet zoloft zoloft dosages buy zyban prescriptions zoloft withdrawal newborns does zoloft interact with alcohol zoloft pharmacy valtrex verses acylovior flomax zoloft zoloft allergies xanax vs paxil zyban side generic zyban price pharmacy that ship cod for xanax zoloft and drowsy xanax on line prescription questionnaire prescribed wellbutrin sr and adderall zoloft not sleeping well zyban information xanax and texas drug schedules zithromax suspension no prescription overnight xanax on the airplane valtrex prescribing info on zoloft fiorcet generic drugs wellbutrin zyrtec rxpricebusterscom zoloft offficial site transition from wellbutrin to prozac perimenopause zoloft pain ultram quitting zoloft cold turkey viagra prevent premature ejaculation buying prescription valium without xanax taking zoloft and uses marijauana danger of zoloft get a doctors prescription of xanax drug category xanax valtrex walgreen suicide using xanax how much valtrex interactions commercial filming valtrex zoloft interaction alcohol adhd zoloft xanax prices in mexico advantage plan zyban buying xanax with out a prescription chemical name for xanax affects of zoloft in children xanax bars yellow zoloft users group xanax no prescription 24 overnight xanax or zoloft zyrtec clartin allegra is zoloft really cocaine venetian las vegas effects viagra zoloft and cortisol zoloft interaction loratadine pseudoephedrine zoloft prescribing zoloft men dxm zoloft interaction north carolina vioxx heart attack lawyer abd death zyban welbutrin zyban purchase online retin-a renova avita tazorac seroquel zoloft new jersey vioxx heart attack attorneys zoloft sexual buy phentermine or xenical without prescription pharmacuetical company that makes zoloft sertraline klonopin rating xanax zoloft synthroid menopause long term danger of ultram symptoms of zoloft zoloft average dosage fast weight loss with xenical mexico medication prescription zyban zoloft acetaminophen complications fascts about drug abuse xanax xanax anxiety relief global pharmacy come off zoloft california valtrex steve anderson libido zoloft xanax no perscription master card symptom zoloft canada pharmacy macrobid zestril international pharmacy weight gain or loss zyban zoloft and hepatic dysfunction zyrtec counter drug wellbutrin and hair loss and regrowth where to buy zovirax low cost zyban serotonin syndrome zoloft dosage valtrex discount xanax zoloft bupropion columbus ohio vioxx heart attack lawyer vardenafil medicine online difference between effexor xr zoloft ago cheapest xanax no prescription zoloft stereochemistry xanax and children zoloft decreasing dosage purchase xanax without a prescription dog allergies zyrtec zoloft and drinking xanax overnight reliable no prescription needed xenical discount pharmacy vicodin europe drug store zyban free prescription valtrex dizziness lipitor zocor weight loss after stopping zoloft side effercts of snorting xanax generic to zoloft zoloft withdrawal causing muscle twitches side effects of zyrtec allergy medicine zoloft and tamoxifen special master zyprexa buy cheap levitra xanax xenical effects xanax bars 2mg xanax bars no prescription overnight xanax without prescription 200mg of zoloft buy xenical from usa prescription inc valium xanax vs xanax order zoloft and bipolar facts about zoloft new song called viva viagra information on drug zoloft zoloft et boire xanax 5 milligram bars drugs that look like xanax switching from zyrtec to allegra zoloft and talking in your sleep ativan compared to xanax effectiveness of valtrex xanax drug info domperidone and zoloft where to buy zyban zyban prescription xanax alcohol combined zoloft and alcohol interactions valtrex costs taking zoloft with zyban pictures od xanax xr free zoloft wellbutrin mixed with prozac buying fake viagra cumulative effect of zoloft zoloft alcohol abuse prevention zyban and physician ultram prescriptions online buy canadian zyban generic zocor united states bupropion and zyban hair loss zyban zoloft success comments on xanax drug drug interactions xanax buy in uk xenical loss weight wellbutrin xl generic form of zoloft wellbutrin generic med cheap zyrtec zoloft is wonderful valium and medical malpractice generic wellbutrin test results forum bipolar and xanax liquid magnesium safe with zoloft forum nausea zoloft wellbutrin prozac weight gain or weight loss zyban xanax bars no liver xanax death europe zyban generic medications zoloft 199 90 2mg xanax generica zoloft ingrediants wellbutrin sr bupropion pennsylvania zyban or wellbutrn sr zyban drug insert purchase vardenafil valium replacement with xanax zoloft warning loss result weight xenical zoloft nerve zoloft uses mb12 valtrex valtrex yasmin sertraline hcl generic zoloft xanax nonprescription drugs xanax xl xanax pill with 249 on it difference between effexor xr zoloft xanax overnight delievry zoloft death can i drink alcohol with ultram song valtrex tylenol and xanax order xanax online us pharmacy zocor generic lawsuit zoloft and migraine sizes xanax colors xanax drug testing times muscle cramps from zoloft xanax no perscription master card paypal zoloft and paxil zoloft mylodysplastic syndrome zoloft tachycardia nevada vioxx heart attack lawyer california phentermine network dish viagra ultram used for depression overdose by celexa and zoloft transporting viagra by trucks xanax no prescription fast shipping generic zoloft differences zyban free medications online zyban sr ordering xanax online no priscription pay pal buy zyrtec buy xenical online generic xenical xenical zoloft and autism zyban sperm health no prescription wholesale xanax zoloft and suicide research children will viagra work for premature ejaculation abrupt cessation of zoloft therapy xanax and klonopin 2737 amerimedrx valtrex wetrack it zyrtec zoloft medication interactions lortab and xanax without a prescription xanax and valium zyban skutki uboczne zoloft arthritis xanax superior drugs welbutrin with zoloft zoloft discontinue titrate mail order zyban zyban 2bquit 2bsmoking does generic wellbutrin work wellbutrin generic same pennsylvania vioxx class action does sertraline hcl generic zoloft work zoloft sertraline hcl pfizer patent 2005 cheap zyban online generic zyrtec switching from paxil to zoloft gradually combining prozac wellbutrin zoloft comercial zoloft withdrawal in babies weightloss on yasmin birthcontrol buy zoloft online pharmacy what is the history of xanax combining zoloft and adderall generic zocor simvastatin jaw clenching with zoloft zoloft wih celexa loss weight wellbutrin viagra use oxycotton xanax bars zoloft children ocd zoloft and ecstacy working mechanism of zyban what is xanax xr buy prescription online zyban retin-a canada pharmacy valium valtrex varicela drink alcohol with viagra nasacort aq zyban nexium zoloft generic viagra rx filling in mexico prescription xanax zoloft allergic reaction zoloft ball site sr wellbutrin xanax 2 mg without prescription sniffing zoloft wellbutrin generic vs buy zyban where taking zoloft with zyrtec zyban sucess rates quit zoloft started buspar keyword order zoloft recreational use zoloft cheap online pharmacy denavir yasmin denavir pharmacy italy list valium zoloft marijuana zithromax antibiotics online insomnia and wellbutrin sr wellbutrin sr bupropion connecticut xanax cheap xanax online viagra other use cream valtrex prescription free xanax concerta zoloft interaction viagra and lung conditions in dogs buy canada zyban take zyban zoloft dosage amount zoloft first night sudden stopping of zoloft may cause xanax ratings lowest price generic viagra pfizer dropps zoloft viagra wallpaper cvs pharmacy valtrex zoloft ocd business business buying lead xenical seroquel zoloft combined benadryl and zoloft vardenafil patent zoloft and thyroid zoloft guy wellbutrin dose for weight loss taking zoloft with wellbutrin valium and xanax zithromax tablets no prescription zoloft kids bop dosing zoloft bupropion and zoloft zoloft liver zoloft 50 mg compare generic viagra price xanax online pharmacies that accept mastercard dextrine and zoloft can zoloft affect the liver methylphenidate zoloft valtrex overdose zoloft is making me sweat buspar and zoloft buy zoloft withour prescription north dakota vioxx heart attack lawyer wellbutrin for chronic fatigue zyban and cocaine zyprexa weight loss xanax and prozac death zoloft vs seroquel xanax dog zoloft use with diazepam zoloft manufacturers generic price zocor zyban xanax xanax drug detection 1000 mg valtrex zyban baikalguide order zocor online what kind of drug is xanax wellbutrin sr doses average dose zoloft effects of zoloft in pregnancy quail eggs better han viagra does xanax cause liver damage xanax no prescription affliated with pillbar understanding zoloft what company manufactures generic zoloft yasmin birth control for treating depression zoloft sideaffects search zyban online zoloft for headaches scottish civic trust viagra charles free zyban xanax and no prescription and hhv-6 valtrex what does zyban do zoloft is killing me xanax valium quick zyrtec pravachol foreign pharmacy worksite zyban zoloft com take zoloft before bed paxil zoloft and birth defects best xenical weight loss information search zoloft online pharmacy and xanax xanax maoi effexor xr buy b zyban b xanax us zyban death zoloft and gestational diabetes clarinex zyrtec allegra cheap viagra cialis xanax demerol morphine no prescription needed dosage of 1gram valtrex valium sale zoloft and joint pain zoloft and naseau zoloft safety breastfeeding info on xanax medication interactions for zoloft ortho-evra patch aldara cheap drugs zyrtec weight loss after yasmin mixing prozac wellbutrin taking chantix with zyban valacyclovir hcl online information on valtrex going off of valtrex benefits of valtrex zyban and melatonin zoloft verses lexapro valtrex shelf life effects of zoloft zoloft and hives chiropractic xanax dentists xenical dangerous healthy meridia pill zoloft product medical alternatives to zoloft zocor generic substitute zoloft benefit zoloft danger zoloft medicine brain inury zoloft welbutrinxl taken with zoloft zoloft and dhea different pill forms of zoloft 2006 buy comment post xenical wellbutrin sr and breastfeeding wellbutrin package insert zoloft ginseng ginkgo zoloft dose to high pittman zoloft trial buying xanax without a prescription online prescription for zyban xanax xr 3mg pictures mixing zoloft and wellbutrin zoloft stopping high from zoloft zoloft complications cheap viagra pill buy zyban online canada buy comment leave zoloft what is zyban used for med ultram side effects zyban buy vicodin online pharmacy online zyrtec allergy medication children pills yasmin ortho evra xanax dosage extreme anxiety zanaflex zyban stories simvastatin and generic zocor new hampshire vioxx heart attack lawyer valtrex ads zoloft with alcohol xanax and birth control pills zoloft shaky new jersey vioxx class action treatment of xanax withdrawal buy online valtrex zocor goes generic zyban discount zoloft and lorazepam dosage of zoloft for anxiety doxycycline erythromycin tetracycline generic zoloft does not work xanax xr carisoprodol zyban wellbutrin information wellbutrin medication for depression migraines from generic zoloft keyword snorting zoloft zestoretic warnings precautions pregnancy nursing abuse help with xanax withdrawal overnight delivery on xanax valtrex sun poisoning valtrex for cold sores buy zyrtec autism valtrex and zoloft dopamine dopaminergic viagra best way to use sam-e zoloft interaction zoloft cost zyban pharmacy 029 xanax pill id money order xenical prescription good zyban zyban deadly zoloft experiances xanax test positive in urine nbc5 zoloft downing forum zyban zoloft and ocd zoloft good results zoloft prozac vs buy wellbutrin 300 xl zoloft and juice viagra falls band in new jersey zyprexa settlement claims payout process zyban breggin buy online zyrtec zyban and overdose mexican xanax online no membership fee zyban order logo valtrex focus factor and zoloft zoloft liver problems zoloft and sleeplessness wellbutrin sr and musinex dm zyban witdrawal symptoms zoloft ingredients official xanax website mixing alcohol with zoloft zoloft cause mood swings buy xenical for less than wellbutrin sr stopping zithromax z pak cost zoloft medication information xanax gg249 uk zyban xanax bars recreationally zoloft affect on male fertility pitbull ate zoloft headache sr wellbutrin personal accounts of zoloft users class action vioxx lawsuit nicoderm cq zyban zyban prices zoloft clinical trail vicodin drugs brand generic name name valtrex zyban sperm discount xenical wholesale stores discount pharmacy xanax prescription strength affects of zoloft and alcohol oklahoma vioxx heart attack lawyer acne treatments tazorac product review zoloft withdrawal symptons bupropion zoloft yasmin sayani registered nurse pfizer xanax pills rx wellbutrin tablets generic wellbutrin buy zoloft law suit birth defects can you shoot up xanax buy domain xenical newmail ru risperdal and zoloft patient reviews of wellbutrin sr does generic viagra work buy xenical uk health insurance lead side affects from xanax when zoloft quits working compare vioxx and celebrex wellbutrin or prozac zoloft and rage gin and tonic mixed with zoloft zyban ways to stop smoking compare valium to xanax wellbutrin and hair regrowth signs to watch for with zoloft zoloft and motrin take zoloft in the morning zoloft problem valtrex and alcohol buspar dangerous with zoloft zoloft priapism 2 mg original xanax wellbutrin vs zoloft wellbutrin lamital zoloft psychiatrict articles zoloft withdrawl symtoms needed no online pharmacy prescription xanax zyban and suicide and year valtrex safety in kids zyban qoclick chemistry of zoloft keywords zoloft zoloft to wellbutrin ultram 200mg er side effects zoloft and impotence klonopin zoloft wellbutrin zyban mexico sideaffect zyban generic wellbutrin difference between xanax and valium wellbutrin sr for depression chest heaviness zoloft purchase xanax online through mexican pharmacy online pharmacy no prescription hydrocodone xanax zoloft after thyroidectomy viagra headache valtrex prescritption zyban hcci xenical levitra prevacid zyban online description chemistry ingredients bupropion canine dog alprazolam xanax taking darvocet and xanax zoloft tylenol complications low fat diet for xenical wellbutrin maryland attorney xanax pills from canada side effects of xanax and alcohol zyprexa withdrawal insomnia buy zithromax non-prescription onliene pharmacies with xanax equivelance of wellbutrin sr wellbutrin clinical comparison to prozac xanax time release age recomendations for zoloft prescription allergy zyrtec buy xenical w o per zoloft and first trimester zoloft paranoia metrogel prescription drugs vaniqa machusetts vioxx heart attack lawyer alcohol detox valium buy zoloft on line without rx zyrtec's ingredients that make you tired zoloft and diphenhydramine safety zoloft breast pain overdose zyban valtrex suppressive therapy chris benoit and zoloft zoloft schizophrenia grapefruit zoloft xanax interaction wellbutrin 26 weight loss 10 cheap generic mg zocor actos phentermine zyban xanax bars pictures lots of pictures zyban works zithromax 500mg zyban marijuana wellbutrin sr online no prescription zoloft libido buy uk xenical watch me having sex on viagra xanax shipped fedex cheap domain online xanax xanax anxiety disorder taking l-arginine along with viagra carisoprodol percocet valtrex xanax xr pt experiences pharmacy online xanax xanax detox adipex diet pill us based pharmacy overnight xanax xanax detox diet pill buspar with zoloft awesome zoloft causing psychotic episodes taking zoloft and angry outbursts wellbutrin sr half-life news drugs ultracet manufacturers zoloft does insurance cover viagra xanax and codeine together are fatal zoloft murderer best place to buy generic xanax zoloft patient review viagra covered by kaiser insurance online xanax prescription ecstacy zoloft parody zoloft alchohol out of date zyban zyban antidepress john falk zoloft rxlist drug search results for xanax valtrex valacyclovir wellbutrin sr bupropion idaho babies born with xanax withdrawals zoloft and adhd buy xanax cheap medic verapamil online prescription 1 online order zyban valtrex and pregnancy category wellbutrin sr bupropion wyoming wellbutrin and zoloft valtrex and kidney function zoloft and breastfeeding generic zoloft from canada zoloft ask a patient lamictal and zoloft excessive use viagra side-effects of zoloft canadian zyban online prescription soma zoloft zoloft appetite stimulation zoloft antidepressant gerenic for zoloft luvox versus zoloft zoloft and ambien buy zoloft without rx zyban faq zyban and marijuana benefits zoloft zyban erfahrungen dangers of zoloft in children increased zoloft dosage quit zoloft no problem erectile dysfunction yasmin zyrtec zyrtec tablet hallucinating medication zoloft valtrex logo ssri comparison paxil zoloft prozac xanax mastercard ups pfizer viagra how does it look numb tongue generic zoloft xenical buy from india online pharmacy yasmin xanax as date rape drug zoloft suicide risk xenical weight loss medicine zoloft side effects side effects xanax alprazolam overnight 4.13 online purchase xanax dangerous zyban buspar interact with zoloft news about generic zocor generic zyban pharmacy online can zoloft cause stomach cramps acyclovir or zovirax zoloft side effects weight loss xanax bars photos famvir zovirax or valtrex medical uses for viagra ultram prescription medicine buy generic xanax zoloft risks of recreational use xanax zoloft dopamine and zoloft zyban info drug vioxx side effects pennsylvania xanax without prescription pay by check six months ativan and zoloft length of zoloft treatment in adults information meridia phentermine xenical xanax treatment for ultram mortgages zyban 150 popularity of zoloft zyban cost lyrica xanax xanax prescription overnight delivery online phentermine prescription valtrex zyban zyban good taking zoloft and wellbutrin together generic zocor manufacturer xanax overnight guaranteed discount xenical otc zyprexa for insomnia generic risk using viagra xanax drug detction time tamoxifen vs arimidex hair loss xanax u s pharmacy effectiveness of generic wellbutrin zoloft television commercial zoloft better than prozac xanax valium comparison ocd and zoloft vs prozac zoloft by pfizer valtrex website zoloft in children zoloft sleepiness zoloft and first foods valtrex australia psoriasis and valtrex wellbutrin as a weight loss aid from information zoloft wellbutrin sr patient reactions can zoloft cause bubbles in urine zoloft and sperm xanax prescription price xenical low carb diet umaxppc valium vs xanax xanax discounted zoloft taken with trazadone zoloft and wellbutrin buy cheap xanax overnight delivery cyber pharmacy vioxx prescription online fast shipping viagra is zoloft a mao inhibitor drinking and zoloft viagra overnite shipping cheap generic propecia ultram ultram zithromax prescription purchase without xanax buy cheap wellbutrin xl zyrtec home loan refinancing taking prozac with wellbutrin valtrex canker sores child in zoloft viagra in mexico pharmacia wellbutrin and pain killers xanax mgs zoloft for treatment of night sweats xanax prozac zyban problems xanax is a truth drug charly groenendijk zyban top rated prescription free xanax meds no pharmacy prescription zoloft zoloft negative effects zoloft valtrex sr ephedrine and xanax zoloft murder defense penalty for buying xanax online wellbutrin purchase is zoloft a maoi xanax from the us no prescription zoloft 6 hours before intercourse zoloft ephedra milligrams of zoloft typical zoloft shirt north dakota vioxx class action does viagra woman work 2 mg xanax bars what is zoloft for zoloft perscription klonopin or xanax valtrex steve anderson compliance zocor prescription drug purchase online zithromax worksite zyban prescriptions wellbutrin while nursing can you take paxil xanax together dosing zyban zyban helping quit smoking information yasmin online medications buy cheap xanax at kalesaedu org zoloft for ocd best xenical weight loss information online wellbutrin and klonapin and allegra buy valium online without a prescription from withdrawel zoloft xanax bar and illicit zoloft at night hgh-saizen zyrtec ortho tri-cyclen aldara cataracts and zoloft serotonin zoloft 2bgeneric zoloft zoloft message zoloft and aspirin celexa or zoloft positive experiences with zoloft xanax sizes and pills nebraska vioxx class action online prescription zyban lupron depression zoloft dreampharmaceuticals zyban online xenical diet weight loss pill tabletki zyban buy xenical cheapest champix v zyban zyban sleeplessness herbs with zoloft interactions zoloft suit in phil hartman death zoloft or paxil gad zoloft chemical symbols best website to purchase xanax xanax xr side effects missouri class action vioxx valtrex to treat warts valtrex herbal interactions ween lyrics zoloft xanax vs clodopins discounted price on valtrex zoloft medication taking both zyrtec and allegra dysfunction erectile zocor zithromax z pak zyprexa prozac combination therapy ultram prescription on line 100mg zoloft generic generic levitra vardenafil zoloft and wellburtin wellbutrin sr bupropion alaska medical valtrex xanax substitute depression medicines zoloft wellbutrin xl and weight loss zyrtec online pharmacy viagra medication online fatal amount of xanax zoloft generic ultram online pharmacy dreampharmaceuticals online zyrtec sleep medication and zoloft wellbutrin sr bupropion kansas zoloft och amning zoloft and wellbutrin wellbutrin and zoloft take adipex with zoloft xanax 2 mg upjohn long bars zyban and alcohol xenical aldara zovirax zyban zyrtec zoloft insomnia zoloft and pfizer and lawsuit does viagra work on women generic for valtrex zoloft melatonin zyrtec online dream pharmaceutical internet pharmacy renova zithromax difference xanax and xana xanax time zyban physicians effects of valiums zantac and zoloft taking zoloft and haldol together zyban for quit smoking pharmacy prescription us without xanax ibuprofen and zoloft which prescription drugs contain tylenol zyban for sale 7 xenical viagra zyban proscar ultram and alchohol valtrex cfs trial xanax and wine lyrics zyban deutsch loss weight zoloft xanax is used for zyban droga xanax and cats zyban initial dosage online prescription ultram medication zyban mylan a1 xanax zoloft pregnant zoloft to treat menopause ativan and xanax zyrtec syrup for allergies in children night sweats low testosterone sam e and zoloft together valium pills pictures wellbutrin sr bupropion new mexico trileptal and zoloft 2b price zyban zithromax z-pak zoloft and hair pulling zoloft withdrawel syptoms wellbutrin generic name cheap generic xanax without prescription zocor night sweats men is viagra covered by insurance cheap online prescription ultram ultram wellbutrin buy zyban onlinea0 fact zyban ambien and vicodin nausea withdrawal zoloft loss weight zyban zoloft tablet zyban in zoloft screensavers xanax prescription information coshocton county valtrex smoking with aderall and zoloft zoloft dopamine generic form of valtrex cod discount overnight shipping zoloft zoloft and memory loss zoloft addictive mao inhibitors zoloft xanax images 3 mg zyban side effests zyban for smokers zoloft electric shocks zoloft and cosef valtrex headache zoloft or klonopin snort zoloft increased zoloft to 100mg will viagra help with premature ejaculation wellbutrin wellbutrin sr bupropion hcl wellbutrin sr bupropion minnesota generic zoloft sun pharma what is zyban wellbutrin versus zyban pill viagra snl valtrex weaning zoloft protocol wellbutrin sr muscle pain does xanax cause weight loss mexico pharmacies xanax effexor and zoloft comparison zyban joint pain mixing zoloft and effexor drug generic online prescription propecia ultram tremors taking zoloft xanax and sezuires cleanse zyban viagra does not work