|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Problem
<i><b>Originally posted by : Adam Stevenson (alstevenson@nadev.com)</b></i><br />I can not get the following code to compile without error:<br />----------------------------------<br /><br />using System; <br />using System.Collections;<br />using System.Data;<br /><br />// begining of namespace<br /><br />public class testClass{<br /> <br /> public virtual void retrieve(){<br /> SQLConnection myConnection = new SQLConnection("server=localhost;uid=sa;pwd=;database=OM");<br /> SQLDataSetCommand myCommand = new SQLDataSetCommand("ProductCategoryList", myConnection);<br /> }<br />}<br /><br />---------------------------------------------<br />I get the error:<br /><br /> <br />Compiling...<br /> <br />Microsoft (R) C# Compiler Version 7.00.8905 [NGWS runtime 2000.14.1812.10]<br />Copyright (C) Microsoft Corp 2000. All rights reserved.<br /><br />objectEngine.cs(3,14): error CS0234: The type or namespace name 'Data' does not exist in the class or namespace 'System'<br /><br />I am using the following command line:<br />/debug+ /t:library /w:4 /out
e2.dll oe.cs<br /><br />Any light would help. Thanks!<br /><br />Sincerely,<br /><br />Adam Stevenson<br /><br /> |
|
#2
|
|||
|
|||
|
<i><b>Originally posted by : </b></i><br /><br />Got the answer. I needed to add the following<br />/r:System.Data.dll<br /><br />------------<br />Adam Stevenson at 9/27/2000 6:03:23 PM<br /><br />I can not get the following code to compile without error:<br />----------------------------------<br /><br />using System; <br />using System.Collections;<br />using System.Data;<br /><br />// begining of namespace<br /><br />public class testClass{<br /> <br /> public virtual void retrieve(){<br /> SQLConnection myConnection = new SQLConnection("server=localhost;uid=sa;pwd=;database=OM");<br /> SQLDataSetCommand myCommand = new SQLDataSetCommand("ProductCategoryList", myConnection);<br /> }<br />}<br /><br />---------------------------------------------<br />I get the error:<br /><br /> <br />Compiling...<br /> <br />Microsoft (R) C# Compiler Version 7.00.8905 [NGWS runtime 2000.14.1812.10]<br />Copyright (C) Microsoft Corp 2000. All rights reserved.<br /><br />objectEngine.cs(3,14): error CS0234: The type or namespace name 'Data' does not exist in the class or namespace 'System'<br /><br />I am using the following command line:<br />/debug+ /t:library /w:4 /out
e2.dll oe.cs<br /><br />Any light would help. Thanks!<br /><br />Sincerely,<br /><br />Adam Stevenson<br /><br /> |
![]() |
| Viewing: ASP Free Forums > Database > SQL Development > Problem |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|