[Mono-list] ADO.NET status

Marte Castro cuentas@imarte.net
Wed, 26 Jan 2005 13:26:07 -0600


tnx Abe,

-Marte


Abe Gillespie wrote:

> I think what you're looking for is linked off of this page:
>
> http://www.mono-project.com/contributing/resources.html
>
> -Abe
>
> On Jan 26, 2005, at 1:25 PM, Marte Castro wrote:
>
>     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
>
>
>