JFIF>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality C    $.' ",#(7),01444'9=82<.342C  2!!222222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(oך}RJk[hԐ"0#֍'Vif_xQTkөhz}9(?֮J.2q{T {U[}SNmk3C>\ח u\ZO.*#N1Wm%SVW=&|WgqkBO*o8=CtZӨI(QEQEhMǁ5:|R[GZ3[H\c.~b{W_>-𦝨kb_%46:֘{~MVQu6o,cqս:_3|/щ9*%CJ~>׌ rx 9}TJ*VVԷ'vkkשIEIy ▻˨\떴);9 b?-6YNNaHg<5=^zƩm~UIo$;b'9>!oE2 J!K$x =g6O ̡/-շ4ƹmynp:cV u][K19#=JVkx;I}7vP>weI"j6 ʱCRXN*ZlzoމƟ.c~͓X顔0h2Evz( :Lp,j5@>\sb/7 B>k<be~@M+M/톙^luoǧawЭ*%tiUBMY~ ƥƷwoqF e"(W<>5}+Ķs]]\[m <zkγnJ[jZEƱ(((()C)SЌZ(#>`l̦v cw:kPEgqJFx# Ek*%Qr|[bXjQssީi7VHPZآR1pRv}/YnQEf0(((((((((((((((( MySQL (error) Code Reference

The Joy of Linking

September 21st, 2007

Wouldn’t you know it - in my various console stress test apps that I wrote I had no issues compiling and linking.  Now that it’s time to integrate with my existing app that uses the Oracle libs - now I’m having linker errors everywhere. 

It looks to be a conflict between memory managers … oh… joy.

They say understanding and fixing linker errors is the sign of an experienced programmer.  I just think of it as annoyingly time consuming.

  • definition for item A couldn’t be found
  • track down item A
  • Oh look - there are several of them - which one should I use?
  • Are there any defines that need to be set?
  • Are there project dependencies that I skipped?
  • Are the two projects using the same C Runtime?  Static/Dynamic and SingleThread/MultiThread?
  • summon archaine knowlege about one of the projects your linking to - you seem to remember some mentioning how it wasn’t compatable with something & it’s not documented in the headers ;-)
  • re-compile
  • Lather, Rinse, Repeat

128

September 21st, 2007

HA_ERR_OUT_OF_MEM


#define HA_ERR_OUT_OF_MEM 128 /* Record-file is crashed */

TODO: Add Context

127

September 21st, 2007

HA_ERR_WRONG_IN_RECORD


#define HA_ERR_WRONG_IN_RECORD 127 /* Record-file is crashed */

TODO: Add Context

126

September 21st, 2007

HA_ERR_CRASHED


#define HA_ERR_CRASHED 126 /* Indexfile is crashed */

125

September 21st, 2007

TODO: Find where 125 is defined - I doesn’t appear to be listed with the other HA_ERR_* defines in my_base.h

Was it depreciated?

124

September 21st, 2007

HA_ERR_WRONG_INDEX


#define HA_ERR_WRONG_INDEX 124 /* Wrong index given to function */


TODO: Add Context

123

September 21st, 2007

HA_ERR_RECORD_CHANGED


#define HA_ERR_RECORD_CHANGED 123 /* Uppdate with is recoverable */

TODO: Add context

122

September 21st, 2007

TODO: Find where 122 is defined - I doesn’t appear to be listed with the other HA_ERR_* defines in my_base.h

Was it depreciated?

121

September 21st, 2007

HA_ERR_FOUND_DUPP_KEY 


#define HA_ERR_FOUND_DUPP_KEY 121 /* Dupplicate key on write */


TODO: Add context

120

September 21st, 2007

HA_ERR_KEY_NOT_FOUND


#define HA_ERR_KEY_NOT_FOUND 120 /* Didn’t find key on read or update */

TODO: Add context