Thanks! Don't you love SharePoint... I had to do Code Infront for a feature that referenced Oracle:
<%@ Assembly Name="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" %>
<%@ Import Namespace="System.Data.OracleClient" %>
and then I can reference the classes from this OracleClient assembly:
OracleConnection, OracleCommand, OracleDataReader
Bad part was, I got no compilation errors, and had to use the wonderfully useful SmartPart (son-of or "ReturnOfSmartPartv1_3.wsp" from codeplex: http://smartpart.codeplex.com/).
I got no compile errors but it was showing nothing for my SharePoint Feature (from a code-inline ASCX)... I actually did have compile errors but it "said" it succeeded compiling in VS.NET... so I used SmartPart to do host the control with everything commented out, then I uncommented and hit F5/refresh.
I got compilation errors - with line numbers - in the SmartPart container! Funky coool!!
So now my ASCX works jus' fine since I can use SmartPart to see it work or not and if not, WHY!
Dan Wygant