[Mono-list] Re: Mono-list digest, Vol 1 #2293 - 14 msgs

Marte Castro cuentas@imarte.net
Wed, 26 Jan 2005 12:25:30 -0600


This is a multi-part message in MIME format.
--------------060505030709000004010908
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 8bit

hi,
is this link  http://www.go-mono.com/class-status-System.Data.html still 
accurate? if not, where cand i find the correct progress(status) of  
ADO.NET?

Regards!

mono-list-request@lists.ximian.com wrote:

>Send Mono-list mailing list submissions to
>	mono-list@lists.ximian.com
>
>To subscribe or unsubscribe via the World Wide Web, visit
>	http://lists.ximian.com/mailman/listinfo/mono-list
>or, via email, send a message with subject or body 'help' to
>	mono-list-request@lists.ximian.com
>
>You can reach the person managing the list at
>	mono-list-admin@lists.ximian.com
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of Mono-list digest..."
>
>
>Today's Topics:
>
>   1. Re: Web Services and native shared objects:
>       System.DllNotFoundException (Jonathan Pryor)
>   2. RE: Bitwise operation weirdness (Mike Welham)
>   3. Re: monoLaunchW (Vincent Arnoux)
>   4. Paradox table access? (Morten Schmidt)
>   5. Re: Bitwise operation weirdness (=?ISO-8859-1?Q?Miquel_Ram=EDrez?=)
>   6. Re: monoLaunchW (Francisco T. Martinez)
>   7. Re: Basic Glade# question (Jonas Geiregat)
>   8. Re: monoLaunchW (Vincent Arnoux)
>   9. Re: ASP.NET on Linux: apache, mono, xsp, mod_mono (Jonas Geiregat)
>  10. Re: ASP.NET on Linux: apache, mono, xsp, mod_mono (Jonas Geiregat)
>  11. CVS Repository for Npgsql (Howard Cole)
>  12. Re: CVS Repository for Npgsql (Francisco Figueiredo Jr.)
>  13. Re: Basic Glade# question (Ian Parish)
>
>--__--__--
>
>Message: 1
>Subject: Re: [Mono-list] Web Services and native shared objects:
>	System.DllNotFoundException
>From: Jonathan Pryor <jonpryor@vt.edu>
>To: Miquel =?ISO-8859-1?Q?Ram=EDrez?= <mvorkosigan@gmail.com>
>Cc: mono-list@lists.ximian.com
>Date: Tue, 25 Jan 2005 06:51:26 -0500
>
>On Mon, 2005-01-24 at 22:06 +0100, Miquel Ramírez wrote:
>  
>
>>PS: I solved the logging issue (to some extent) by relying on log4net
>>[http://logging.apache.org/log4net]. Better than having
>>Console.WriteLines all over the place ...
>>PS2: Also tried the <trace> feature in the web service 'descriptor'
>>but it just traced the messages passed forth and back the server :(
>>    
>>
>
>A built-in alternative to log4net is System.Diagnostics.Trace.
>
>See:
>
>http://lists.ximian.com/archives/public/mono-list/2004-January/017482.html
>http://lists.ximian.com/archives/public/mono-list/2002-December/010504.html
>http://www.go-mono.com/docs/index.aspx?tlink=9@ecma%3a1224%23Trace%2f
>http://www.go-mono.com/docs/index.aspx?tlink=9@ecma%3a1182%23DefaultTraceListener%2f
>
> - Jon
>
>
>
>--__--__--
>
>Message: 2
>Subject: RE: [Mono-list] Bitwise operation weirdness
>Date: Tue, 25 Jan 2005 14:30:22 +0200
>From: "Mike Welham" <mike@digitalnova.co.za>
>To: <mono-list@ximian.com>
>
>Hi Miguel,
>
>  
>
>>bitwise.cs(11) error CS0029: Cannot convert implicitly from `int' to=20
>>`short'
>>Compilation failed: 1 error(s), 0 warnings
>>    
>>
>
>  
>
>>If I do not misunderstand the compiler message, it seems that for some =
>>    
>>
>
>  
>
>>reason the result of or-ing together the hiword and the loword=20
>>variables results in an 'int' (32-bit integer number, I suppose).
>>    
>>
>
>The compiler is implicitly converting the two r-values to ints prior to =
>doing to doing the 'or', and then complaining about trying to implicitly =
>convert the resultant int to a short.
>
>There is no predefined C# 'or' for shorts, and the best match is the =
>'or' for ints. See the C# spec quotes below.
>
>  
>
>>Why is that? It is easily fixed by explicitly casting the result of=20
>>the bitwise or operation down to a short, but I can't help feeling=20
>>that this feels weird: is it a C# specification feature?
>>    
>>
>
>The C# spec says:
>
><spec section 14.10>
>
>For an operation of the form x op y, where op is one of the logical =
>operators, overload resolution (=A714.2.4) is applied to select a =
>specific operator implementation. The operands are converted to the =
>parameter types of the selected operator, and the type of the result is =
>the return type of the operator.
>
></spec>
>
>And=20
>
><spec section 14.10.1>
>
>The predefined integer logical operators are:
>
>int operator &(int x, int y);
>uint operator &(uint x, uint y);
>long operator &(long x, long y);
>ulong operator &(ulong x, ulong y);
>int operator |(int x, int y);
>uint operator |(uint x, uint y);
>long operator |(long x, long y);
>ulong operator |(ulong x, ulong y);
>int operator ^(int x, int y);
>uint operator ^(uint x, uint y);
>long operator ^(long x, long y);
>ulong operator ^(ulong x, ulong y);
>
></spec>
>
>Best Regards
>
>Mike
>
>--__--__--
>
>Message: 3
>Date: Tue, 25 Jan 2005 13:41:33 +0100
>From: Vincent Arnoux <vincent.arnoux@rfo.atmel.com>
>To: mono-list@lists.ximian.com
>Subject: Re: [Mono-list] monoLaunchW
>
>Paolo Molaro a =E9crit :
>
>  
>
>>On 01/24/05 Vincent Arnoux wrote:
>>=20
>>
>>    
>>
>>>I am looking for launching a Gtk#/Mono application on Windows without=20
>>>displaying the "not very sexy" DOS window.
>>>  =20
>>>
>>>      
>>>
>>Compile the app with the -target:winexe mcs option.
>>I didn't test it, but it's supposed to work.
>>
>>lupus
>>
>>=20
>>
>>    
>>
>I used the w32 installer and it didn't work, believe me. I don't know
>where to find sources to recompile it. When I try to run monolaunchW
>myapp.exe, I get a "Cannot find mscoree.dll" error message. If I
>download this dll from Internet and retry, I get something like ".NET is
>not correctly installed" message.
>
>Vincent
>
>
>--__--__--
>
>Message: 4
>Date: Tue, 25 Jan 2005 14:14:05 +0100
>From: "Morten Schmidt" <sch@knowledgelab.sdu.dk>
>To: <mono-list@lists.ximian.com>,
>	<mono-list-request@lists.ximian.com>
>Subject: [Mono-list] Paradox table access?
>
>--=__Part94B42E0D.0__=
>Content-Type: text/plain; charset=US-ASCII
>Content-Transfer-Encoding: 7bit
>
>I'm not sure this is the place to ask, but here goes nothing: 
> 
>Anyone jnow anything abaout accessing Paradox Tables in an easy fashion,
>ie. directly/ODBC/ADO or what-ever? 
> 
>thanks... Just point me in the direction of a few pages on the
>subject... 
> 
>/morten 
>
>  
>


--------------060505030709000004010908
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
hi,<br>
is this link&nbsp;<a
 href="http://www.go-mono.com/class-status-System.Data.html">
http://www.go-mono.com/class-status-System.Data.html</a> still
accurate? if not, where cand i find the correct progress(status) of&nbsp;
ADO.NET?<br>
<br>
Regards!<br>
<br>
<a class="moz-txt-link-abbreviated" href="mailto:mono-list-request@lists.ximian.com">mono-list-request@lists.ximian.com</a> wrote:
<blockquote
 cite="mid20050125160033.19014.64470.Mailman@headcheese.ximian.com"
 type="cite">
  <pre wrap="">Send Mono-list mailing list submissions to
	<a class="moz-txt-link-abbreviated" href="mailto:mono-list@lists.ximian.com">mono-list@lists.ximian.com</a>

To subscribe or unsubscribe via the World Wide Web, visit
	<a class="moz-txt-link-freetext" href="http://lists.ximian.com/mailman/listinfo/mono-list">http://lists.ximian.com/mailman/listinfo/mono-list</a>
or, via email, send a message with subject or body 'help' to
	<a class="moz-txt-link-abbreviated" href="mailto:mono-list-request@lists.ximian.com">mono-list-request@lists.ximian.com</a>

You can reach the person managing the list at
	<a class="moz-txt-link-abbreviated" href="mailto:mono-list-admin@lists.ximian.com">mono-list-admin@lists.ximian.com</a>

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Mono-list digest..."


Today's Topics:

   1. Re: Web Services and native shared objects:
       System.DllNotFoundException (Jonathan Pryor)
   2. RE: Bitwise operation weirdness (Mike Welham)
   3. Re: monoLaunchW (Vincent Arnoux)
   4. Paradox table access? (Morten Schmidt)
   5. Re: Bitwise operation weirdness (=?ISO-8859-1?Q?Miquel_Ram=EDrez?=)
   6. Re: monoLaunchW (Francisco T. Martinez)
   7. Re: Basic Glade# question (Jonas Geiregat)
   8. Re: monoLaunchW (Vincent Arnoux)
   9. Re: ASP.NET on Linux: apache, mono, xsp, mod_mono (Jonas Geiregat)
  10. Re: ASP.NET on Linux: apache, mono, xsp, mod_mono (Jonas Geiregat)
  11. CVS Repository for Npgsql (Howard Cole)
  12. Re: CVS Repository for Npgsql (Francisco Figueiredo Jr.)
  13. Re: Basic Glade# question (Ian Parish)

--__--__--

Message: 1
Subject: Re: [Mono-list] Web Services and native shared objects:
	System.DllNotFoundException
From: Jonathan Pryor <a class="moz-txt-link-rfc2396E" href="mailto:jonpryor@vt.edu">&lt;jonpryor@vt.edu&gt;</a>
To: Miquel =?ISO-8859-1?Q?Ram=EDrez?= <a class="moz-txt-link-rfc2396E" href="mailto:mvorkosigan@gmail.com">&lt;mvorkosigan@gmail.com&gt;</a>
Cc: <a class="moz-txt-link-abbreviated" href="mailto:mono-list@lists.ximian.com">mono-list@lists.ximian.com</a>
Date: Tue, 25 Jan 2005 06:51:26 -0500

On Mon, 2005-01-24 at 22:06 +0100, Miquel Ram&Atilde;&shy;rez wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">PS: I solved the logging issue (to some extent) by relying on log4net
[<a class="moz-txt-link-freetext" href="http://logging.apache.org/log4net">http://logging.apache.org/log4net</a>]. Better than having
Console.WriteLines all over the place ...
PS2: Also tried the &lt;trace&gt; feature in the web service 'descriptor'
but it just traced the messages passed forth and back the server :(
    </pre>
  </blockquote>
  <pre wrap=""><!---->
A built-in alternative to log4net is System.Diagnostics.Trace.

See:

<a class="moz-txt-link-freetext" href="http://lists.ximian.com/archives/public/mono-list/2004-January/017482.html">http://lists.ximian.com/archives/public/mono-list/2004-January/017482.html</a>
<a class="moz-txt-link-freetext" href="http://lists.ximian.com/archives/public/mono-list/2002-December/010504.html">http://lists.ximian.com/archives/public/mono-list/2002-December/010504.html</a>
<a class="moz-txt-link-freetext" href="http://www.go-mono.com/docs/index.aspx?tlink=9@ecma%3a1224%23Trace%2f">http://www.go-mono.com/docs/index.aspx?tlink=9@ecma%3a1224%23Trace%2f</a>
<a class="moz-txt-link-freetext" href="http://www.go-mono.com/docs/index.aspx?tlink=9@ecma%3a1182%23DefaultTraceListener%2f">http://www.go-mono.com/docs/index.aspx?tlink=9@ecma%3a1182%23DefaultTraceListener%2f</a>

 - Jon



--__--__--

Message: 2
Subject: RE: [Mono-list] Bitwise operation weirdness
Date: Tue, 25 Jan 2005 14:30:22 +0200
From: "Mike Welham" <a class="moz-txt-link-rfc2396E" href="mailto:mike@digitalnova.co.za">&lt;mike@digitalnova.co.za&gt;</a>
To: <a class="moz-txt-link-rfc2396E" href="mailto:mono-list@ximian.com">&lt;mono-list@ximian.com&gt;</a>

Hi Miguel,

  </pre>
  <blockquote type="cite">
    <pre wrap="">bitwise.cs(11) error CS0029: Cannot convert implicitly from `int' to=20
`short'
Compilation failed: 1 error(s), 0 warnings
    </pre>
  </blockquote>
  <pre wrap=""><!---->
  </pre>
  <blockquote type="cite">
    <pre wrap="">If I do not misunderstand the compiler message, it seems that for some =
    </pre>
  </blockquote>
  <pre wrap=""><!---->
  </pre>
  <blockquote type="cite">
    <pre wrap="">reason the result of or-ing together the hiword and the loword=20
variables results in an 'int' (32-bit integer number, I suppose).
    </pre>
  </blockquote>
  <pre wrap=""><!---->
The compiler is implicitly converting the two r-values to ints prior to =
doing to doing the 'or', and then complaining about trying to implicitly =
convert the resultant int to a short.

There is no predefined C# 'or' for shorts, and the best match is the =
'or' for ints. See the C# spec quotes below.

  </pre>
  <blockquote type="cite">
    <pre wrap="">Why is that? It is easily fixed by explicitly casting the result of=20
the bitwise or operation down to a short, but I can't help feeling=20
that this feels weird: is it a C# specification feature?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
The C# spec says:

&lt;spec section 14.10&gt;

For an operation of the form x op y, where op is one of the logical =
operators, overload resolution (=A714.2.4) is applied to select a =
specific operator implementation. The operands are converted to the =
parameter types of the selected operator, and the type of the result is =
the return type of the operator.

&lt;/spec&gt;

And=20

&lt;spec section 14.10.1&gt;

The predefined integer logical operators are:

int operator &amp;(int x, int y);
uint operator &amp;(uint x, uint y);
long operator &amp;(long x, long y);
ulong operator &amp;(ulong x, ulong y);
int operator |(int x, int y);
uint operator |(uint x, uint y);
long operator |(long x, long y);
ulong operator |(ulong x, ulong y);
int operator ^(int x, int y);
uint operator ^(uint x, uint y);
long operator ^(long x, long y);
ulong operator ^(ulong x, ulong y);

&lt;/spec&gt;

Best Regards

Mike

--__--__--

Message: 3
Date: Tue, 25 Jan 2005 13:41:33 +0100
From: Vincent Arnoux <a class="moz-txt-link-rfc2396E" href="mailto:vincent.arnoux@rfo.atmel.com">&lt;vincent.arnoux@rfo.atmel.com&gt;</a>
To: <a class="moz-txt-link-abbreviated" href="mailto:mono-list@lists.ximian.com">mono-list@lists.ximian.com</a>
Subject: Re: [Mono-list] monoLaunchW

Paolo Molaro a =E9crit :

  </pre>
  <blockquote type="cite">
    <pre wrap="">On 01/24/05 Vincent Arnoux wrote:
=20

    </pre>
    <blockquote type="cite">
      <pre wrap="">I am looking for launching a Gtk#/Mono application on Windows without=20
displaying the "not very sexy" DOS window.
  =20

      </pre>
    </blockquote>
    <pre wrap="">Compile the app with the -target:winexe mcs option.
I didn't test it, but it's supposed to work.

lupus

=20

    </pre>
  </blockquote>
  <pre wrap=""><!---->I used the w32 installer and it didn't work, believe me. I don't know
where to find sources to recompile it. When I try to run monolaunchW
myapp.exe, I get a "Cannot find mscoree.dll" error message. If I
download this dll from Internet and retry, I get something like ".NET is
not correctly installed" message.

Vincent


--__--__--

Message: 4
Date: Tue, 25 Jan 2005 14:14:05 +0100
From: "Morten Schmidt" <a class="moz-txt-link-rfc2396E" href="mailto:sch@knowledgelab.sdu.dk">&lt;sch@knowledgelab.sdu.dk&gt;</a>
To: <a class="moz-txt-link-rfc2396E" href="mailto:mono-list@lists.ximian.com">&lt;mono-list@lists.ximian.com&gt;</a>,
	<a class="moz-txt-link-rfc2396E" href="mailto:mono-list-request@lists.ximian.com">&lt;mono-list-request@lists.ximian.com&gt;</a>
Subject: [Mono-list] Paradox table access?

--=__Part94B42E0D.0__=
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

I'm not sure this is the place to ask, but here goes nothing: 
 
Anyone jnow anything abaout accessing Paradox Tables in an easy fashion,
ie. directly/ODBC/ADO or what-ever? 
 
thanks... Just point me in the direction of a few pages on the
subject... 
 
/morten 

  </pre>
</blockquote>
<br>
</body>
</html>

--------------060505030709000004010908--