[Mono-bugs] [Bug 38689][Wis] New - byref boolean marshalling not inplemented
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Tue, 25 Feb 2003 14:20:49 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by danmorg@sc.rr.com.
http://bugzilla.ximian.com/show_bug.cgi?id=38689
--- shadow/38689 Tue Feb 25 14:20:49 2003
+++ shadow/38689.tmp.21556 Tue Feb 25 14:20:49 2003
@@ -0,0 +1,71 @@
+Bug#: 38689
+Product: Mono/Runtime
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: danmorg@sc.rr.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: byref boolean marshalling not inplemented
+
+Description of Problem:
+On Windows XP Pro, i get this message running mono.exe
+with the System.Data.OracleClient provider:
+
+WARNING **: byref boolean marshalling not inplemented
+
+I do not know if this is the reason I can not display data retrieved
+from Oracle or not. According to Tim, on Linux, he can display data from
+Oracle.
+
+Steps to reproduce the problem:
+Run the test at
+mcs/class/System.Data.OracleClient/Test/TestOracleClient.cs and
+build with -r System.Data.dll and -r System.Data.OracleClient.dll
+Only, the Oracle client side software needs to be installed.
+Or, you can run sqlsharp.exe and do:
+\provider oracle
+\connectionstring data source=yourdatabase;user id=scott;password=tiger
+\open
+
+Actual Results:
+
+SQL# \provider oracle
+The default Provider is LOADEXTPROVIDER
+ Assembly: System.Data.OracleClient
+ Connection Class: System.Data.OracleClient.OracleConnection
+
+SQL# \connectionstring data source=dansdb;user id=scott;password=tiger
+
+SQL# \open
+Attempt to open connection...
+Loading external provider...
+
+** (g:\monotest\install\bin\sqlsharp.exe:2280): WARNING **: byref boolean
+marsha
+lling not inplemented
+External provider loaded.
+Open was successfull.
+
+Expected Results:
+
+Attempt to open connection...
+Loading external provider...
+External provider loaded.
+Open was successfull.
+
+
+How often does this happen?
+All the time.
+
+Additional Information:
+
+I will try to create a simple test case doing byref bool marshallling.