[Mono-list] Crashes setting properties on DataGridView Column Headers?

2009-02-27 Thread W Allan Edwards

Tonight I have been wrestling with my application throwing an exception when 
calling

dataGridView.Columns[0].HeaderText = "some name"

as well

dataGridView.Columns[0].Visible = false

Both of those statements seem to cause an exception to be thrown.

The exception message is...

"Index is less than 0 or more than or equal to the list count.  Parameter name: 
index: 0

.

On the Microsoft side this issue does not occur.  Also, this was not happening 
in the 2.2 version...

Tech

2.4 RC1 Mono
Open Suse 11.1 32-bit
Windows Vista Home Premium Edition

Thanks,
-A-
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] make install fails in ubuntu for mono 2.2

2009-02-27 Thread spectro
I have Ubuntu Server 8.10, installed mod_mono from debs but they don't came
with System.Web.Extensions

I downloaded mono 2.2 sources from
http://ftp.novell.com/pub/mono/sources-stable/

Built it, failed a couple times. Last time it built.

Now it fails in make install:


make install-local
make[7]: Entering directory
`/root/mono/mono-2.2/mcs/class/Managed.Windows.Forms'
MONO_PATH="../../class/lib/net_1_1_bootstrap:$MONO_PATH"
/root/mono/mono-2.2/runtime/mono-wrapper
../../class/lib/net_1_1_bootstrap/gacutil.exe /i
../../class/lib/net_2_0/System.Windows.Forms.dll /f  /root /usr/lib /package
2.0
Failure adding assembly ../../class/lib/net_2_0/System.Windows.Forms.dll to
the cache: Strong name cannot be verified for delay-signed assembly
make[7]: *** [install-local] Error 1
make[7]: Leaving directory
`/root/mono/mono-2.2/mcs/class/Managed.Windows.Forms'


Any ideas?
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Performance Question

2009-02-27 Thread Rodrigo Kumpera
On Mon, Feb 23, 2009 at 1:37 PM, Aaron Knister wrote:

> I realize this is an extremely open ended and vague question but I'm
> running an application that's doing some intense computation and taking
> forever and a half. Using strace I looked at what it was doing and I didn't
> know what to make of what I saw. I pasted it below-
>
> % time seconds  usecs/call callserrors syscall
> -- --- --- - - 
>  57.970.053464  59   911   431 futex
>  35.740.032959 122   270   270 rt_sigsuspend
>   5.420.004995 1782828 epoll_wait
>   0.880.000813   1   550   tgkill
>   0.000.00   0 4   mmap
>   0.000.00   0 5   mprotect
>   0.000.00   0   540   540 rt_sigreturn
>   0.000.00   0   448   clock_gettime
> -- --- --- - - 
> 100.000.092231  2756  1269 total
>
> Does anybody have an idea as to why it's spending so much time calling
> futex and rt_sigsuspend?
>

futex activity means locking is going on. Until 2.4 mono had an
implementation that depends on polling.
rt_sigsuspend is used by the GC machinery.

Use one the built-in profiler from mono to figure out performance issues.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Crosscompiling for MIPS, smart people wanted

2009-02-27 Thread Rodrigo Kumpera
On Sat, Jan 17, 2009 at 7:05 AM, Ger Teunis  wrote:

>
> I'm currently trying to crosscompile Mono for a MIPS, but I encounter a
> problem.
>
> I downloaded the current sourcecode of Mono (2.2) and I am trying to cross
> compile it for a MIPS32 box of mine.
>
> I configured using the following command:
> ./configure --target=mipsel-linux-uclibc --host=mipsel-linux-uclibc
> --with-tls=pthread
>
> The --with-tls switch seems to fix compile error: "undefined reference to
> 'GC_local_malloc'
> Now I encounter the following problem during make:
>
> (in mono/mini)
> ./genmdesc ./cpu-mips.md cpu-mips.h mips_desc
> ** ERROR **: Invalid opcode 'mips_beq' at line 254 in ./cpu-mips.md
>
> It seems, while genmdesc is compiled for i386 the .md file is a MIPS file.
> (file genmdesc returns: ELF 32-bit LSB executable, Intel 80386, dynamic
> linked...)
>
> Can anyone help me out here? It would be great to run Mono on a Networked
> Media Tank!


Your problem is that the mips machine descriptor file is broken. Please talk
with the MIPS
maintainer.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Same code, different performance?

2009-02-27 Thread Rodrigo Kumpera
Please fill a bug report with a small test case that shows the difference.
You can use the profiler we ship with mono to find the hotspots and point
them
on the bugreport.


On Thu, Feb 12, 2009 at 7:34 PM, reubensm  wrote:

>
> Hello Mono community :)
>
> At work we have a piece of C# code written and compiled under Windows that
> we'd like to port to Linux using Mono.
>
> The code has two parts (client and server) that perform many tasks, one of
> which is data transfer from the cilent to the server.
>
> In our tests we see that when running on Windows, the same code achieves
> performance at least 3-4 times better (faster) than when running under
> Mono/Linux.
>
> We ran a profiler, but the results didn't give any obvious culprit, except
> the possibility that it might be related to synchronization primitives
> implementation of Mono.
>
> Can anyone think of a reason for this slowness? like said, it is the same
> code (and binaries, compiled under Windows) used in both Windows and Linux.
> Both environments are physical (no virtualization, VMs).
>
> Could this be unrelated to Mono, and a result of some OS settings? (Fedora
> 10) if so, what should we check?
>
> Thanks
>
> --
> View this message in context:
> http://www.nabble.com/Same-code%2C-different-performance--tp21986473p21986473.html
> Sent from the Mono - General mailing list archive at Nabble.com.
>
> ___
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono, PHP and .NET library on Ubunty Hardy?

2009-02-27 Thread Chris Howie
On Fri, Feb 27, 2009 at 3:01 PM, millisami  wrote:
> Thanks Chris for the prompt reply.
> I checked in my server and the mono-common package is not installed.

That basically means that none of Mono is installed at all.

> So, before installing the core 2.0 framework of Mono, do I need to install
> the mono-common first or I can install the 2.0 directly??

No, mono-common will be in the dependency tree somewhere.  Just
install the pieces you need and let the package manager do its magic.

> And how do I check that the binfmt kernel extension is installed and
> working?

If, after installing Mono, you can run apps using "./app.exe" instead
of "mono app.exe" then it's working.  Note that the binary will need
to be executable ("chmod +x app.exe") before the first method has a
chance of working.

-- 
Chris Howie
http://www.chrishowie.com
http://en.wikipedia.org/wiki/User:Crazycomputers
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono, PHP and .NET library on Ubunty Hardy?

2009-02-27 Thread millisami

Thanks Chris for the prompt reply.
I checked in my server and the mono-common package is not installed.

So, before installing the core 2.0 framework of Mono, do I need to install
the mono-common first or I can install the 2.0 directly??

And how do I check that the binfmt kernel extension is installed and
working?


Chris Howie wrote:
> 
> On Fri, Feb 27, 2009 at 1:54 PM, millisami  wrote:
>> Now I got to use this in my Ubuntu Hardy. I googled on how to run a .NET
>> app
>> using Mono in Ubuntu and I found  http://mono-project.com/Main%5FPage
>> Mono .
>> And I've been trying to install Mono 2.0.1, 2.2 since 2 days, still
>> figuring
>> out the installation error and I'm getting no-where. So, before spending
>> anymore time on it I want to know what are the things to install to make
>> work the PHP passthru(...) function and PdfProcess.exe work together??
> 
> Nothing special should be required, as long as the binfmt kernel
> extension is working.  It is by default on Ubuntu, I think.  (It's
> depended on by the mono-common package.)
> 
>> Only installing Mono will work or do I have to install XSP and MCS as
>> well??
>> And which version of Mono is required to run this PdfProcess.exe .NET 2
>> based module??
> 
> You'll need the core 2.0 framework libraries, as well as any others
> that your assembly depends on.  It's not possible for us to extract
> that information from just the filename.
> 
> Try running "mono PdfProcess.exe" from the command-line.  If you see
> any errors about assemblies that cannot be found, just figure out the
> Ubuntu package that assembly is provided by and install it.
> 
> -- 
> Chris Howie
> http://www.chrishowie.com
> http://en.wikipedia.org/wiki/User:Crazycomputers
> ___
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Mono%2C-PHP-and-.NET-library-on-Ubunty-Hardy--tp22252165p22253377.html
Sent from the Mono - General mailing list archive at Nabble.com.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono, PHP and .NET library on Ubunty Hardy?

2009-02-27 Thread Chris Howie
On Fri, Feb 27, 2009 at 1:54 PM, millisami  wrote:
> Now I got to use this in my Ubuntu Hardy. I googled on how to run a .NET app
> using Mono in Ubuntu and I found  http://mono-project.com/Main%5FPage Mono .
> And I've been trying to install Mono 2.0.1, 2.2 since 2 days, still figuring
> out the installation error and I'm getting no-where. So, before spending
> anymore time on it I want to know what are the things to install to make
> work the PHP passthru(...) function and PdfProcess.exe work together??

Nothing special should be required, as long as the binfmt kernel
extension is working.  It is by default on Ubuntu, I think.  (It's
depended on by the mono-common package.)

> Only installing Mono will work or do I have to install XSP and MCS as well??
> And which version of Mono is required to run this PdfProcess.exe .NET 2
> based module??

You'll need the core 2.0 framework libraries, as well as any others
that your assembly depends on.  It's not possible for us to extract
that information from just the filename.

Try running "mono PdfProcess.exe" from the command-line.  If you see
any errors about assemblies that cannot be found, just figure out the
Ubuntu package that assembly is provided by and install it.

-- 
Chris Howie
http://www.chrishowie.com
http://en.wikipedia.org/wiki/User:Crazycomputers
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mono, PHP and .NET library on Ubunty Hardy?

2009-02-27 Thread millisami

I'm running a rails app and PHP at my SliceHost Ubuntu Hardy Heron vps
server. I've a PdfProcess.exe module built upon ASP.NET (.NET 2). I've one
PHP file which uses a passthru("PdfProcess.exe ..") function which loads
a pdf template and outputs a new processed pdf file and sent to browser. The
combination of PdfProcess.exe and PHP passthru(...) function works on my
Windows Apache/PHP server in my development system. 

Now I got to use this in my Ubuntu Hardy. I googled on how to run a .NET app
using Mono in Ubuntu and I found  http://mono-project.com/Main%5FPage Mono .
And I've been trying to install Mono 2.0.1, 2.2 since 2 days, still figuring
out the installation error and I'm getting no-where. So, before spending
anymore time on it I want to know what are the things to install to make
work the PHP passthru(...) function and PdfProcess.exe work together?? 

Only installing Mono will work or do I have to install XSP and MCS as well??
And which version of Mono is required to run this PdfProcess.exe .NET 2
based module??
-- 
View this message in context: 
http://www.nabble.com/Mono%2C-PHP-and-.NET-library-on-Ubunty-Hardy--tp22252165p22252165.html
Sent from the Mono - General mailing list archive at Nabble.com.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Installing Mono on Shared Hosting

2009-02-27 Thread Andreas Färber

Am 26.02.2009 um 16:03 schrieb thebluebulb:

> Does anyone know how to install Mono on shared hosting plans? I  
> don't have
> access to the root of the server or any of that stuff. Any advice?

Assuming by shared hosting you mean you only have FTP access, then if  
you find out what platform and system the server is running on, you  
could compile Mono on a comparable box (or virtual machine) with  
corresponding paths and try to misuse Mono as a CGI binary. ;)

For anything else you either need support from the hosting provider or  
shell access on the webserver.

Andreas

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Re moting Problem

2009-02-27 Thread Jonathan Pryor
On Fri, 2009-02-27 at 15:25 +, Michael Bailey wrote:
> I'm a little confused why when mono comes with ubuntu as standard that
> package does not.

Because mono is huge, and they don't want to "waste" that much space for
unused packages.

For example, mono on openSUSE includes the 1.0 profile, which is split
into separate packages on Debian & Ubuntu, and is NOT installed by
default (as most apps don't need the 1.0 profile).  The same logic
applies to any number of packages that were considered as being less
useful or unnecessary, such as Microsoft.VisualBasic.dll support, etc.

 - Jon


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Re moting Problem

2009-02-27 Thread Michael Bailey
I'm a little confused why when mono comes with ubuntu as standard that
package does not.  It fixed the problem though. (Only several hundred others
to go.)  Thanks for pointing me in the right direction.

On 27/02/2009, Chris Howie  wrote:
>
> On Fri, Feb 27, 2009 at 4:38 AM, GarlicRice 
> wrote:
> > I've never used Mono or even Linux before so I'm a little out of my depth
> > here.  I've been given access to a server with Ubuntu installed and I've
> > been asked to try to get one of our .NET 2.0 apps running on it.
> >
> > The first error I got was that System.Runtime.Remoting wasn't in the
> GAC.  I
> > found that surprising but I gave it a copy of the dll.
>
> System libraries included with the Microsoft runtime are, as a rule,
> incompatible with mono.  Install the libmono-system-runtime2.0-cil
> Ubuntu package.
>
> --
> Chris Howie
> http://www.chrishowie.com
> http://en.wikipedia.org/wiki/User:Crazycomputers
>
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] string/buffer allocation speed issue

2009-02-27 Thread tomjohnson3



Alan McGovern-2 wrote:
> 
> All this test does is allocate memory non-stop which is a GC stress test.
> It
> is known that monos GC is currently slower than the MS GC. 
> 

this simple example was meant to illustrate the core bottleneck in a larger
scanner/parser that i'm writing.

a version of my scanner/parser that uses a pre-allocated buffer pool
performs similarly on .NET and mono. ...but it'd be nice to remove the
buffer pool.

are there plans to improve memory allocation speed in a future GC? does
SGen-GC improve on this?

-- 
View this message in context: 
http://www.nabble.com/string-buffer-allocation-speed-issue-tp21626581p22248129.html
Sent from the Mono - General mailing list archive at Nabble.com.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Re moting Problem

2009-02-27 Thread Chris Howie
On Fri, Feb 27, 2009 at 10:25 AM, Michael Bailey
 wrote:
> I'm a little confused why when mono comes with ubuntu as standard that
> package does not.  It fixed the problem though. (Only several hundred others
> to go.)  Thanks for pointing me in the right direction.

Mono only comes "standard" because other standard packages like Tomboy
depend on it.  No default Mono-powered apps apparently depend on
remoting, so why should the package manager install it?

-- 
Chris Howie
http://www.chrishowie.com
http://en.wikipedia.org/wiki/User:Crazycomputers
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] string/buffer allocation speed issue

2009-02-27 Thread Jiří Zárevúcký
> are you saying that the mono/linux is optimized so that memory allocations
> are faster than mono/windows? (this is helpful, if true.)
>

Mono is optimized much better for running on Linux. Why optimize
something for platform, where it would get no real use? :)
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] string/buffer allocation speed issue

2009-02-27 Thread tomjohnson3


Robert Jordan wrote:
> 
> Since your sample does nothing, MS.NET has probably optimized out
> parts of the code.
> 

for clarity, this code is meant to illustrate the issue. i started with a
full scanner/parser and trimmed down the guts to isolate the issue. when
running with and without the "core" bits (which perform similarly under .NET
and mono), the magnitude of the performance difference is similar.

memory allocation is the bottleneck in this case.


Robert Jordan wrote:
> 
> If you're benching mono, do it under Linux and with real world code.
> 

are you saying that the mono/linux is optimized so that memory allocations
are faster than mono/windows? (this is helpful, if true.)
-- 
View this message in context: 
http://www.nabble.com/string-buffer-allocation-speed-issue-tp21626581p22247873.html
Sent from the Mono - General mailing list archive at Nabble.com.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Tar library for mono - SharpZipLib doesnt preserve attributes/ownership of files

2009-02-27 Thread Petit Eric
2009/2/26 adrin :
>
>
> Petit Eric wrote:
>>
>> Another way is to folow RPM, by build a CPIO (it is very easy) and gzip
>> the CPIO
>>
>
> Do you know a way of building CPIO archives in Mono code or did you mean
> making them by invoking external tools?
one of my good day lol, here it is mine class, ready to use, for
playing with RPM, this only for uncompress but you should easy
understand, also google will give you lot of good infos :
http://surfzoid.free.fr/freevbsoft/MonoRPM/MonoRpm.2009.02.07.tar.bz2

> --
> View this message in context: 
> http://www.nabble.com/Tar-library-for-mono---SharpZipLib-doesnt-preserve-attributes-ownership-of-files-tp22101501p22234791.html
> Sent from the Mono - General mailing list archive at Nabble.com.
>
> ___
> Mono-list maillist  -  mono-l...@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>



-- 

Cordially.

Small Eric Quotations of the days:
---
If one day one reproaches you that your work is not a work of
professional, say you that:
Amateurs built the arch of Noah, and professionals the Titanic.
---

Few people are done for independence, it is the privilege of the powerful ones.
---

No key was wounded during the drafting of this message.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Re moting Problem

2009-02-27 Thread Robert Jordan
GarlicRice wrote:
> Hello all,
> 
> I've never used Mono or even Linux before so I'm a little out of my depth
> here.  I've been given access to a server with Ubuntu installed and I've
> been asked to try to get one of our .NET 2.0 apps running on it.
> 
> The first error I got was that System.Runtime.Remoting wasn't in the GAC.  I
> found that surprising but I gave it a copy of the dll.  Now I'm getting a

Well, you gave it a copy of MS.NET's dll. This is *not* supported.

Install the missing bits with the packaging system of your distribution.

> TypeInitializationException in the
> System.Runtime.Remoting.Channels.SocketCache class with an inner
> System.NotImplementedException.

Robert

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Re moting Problem

2009-02-27 Thread Chris Howie
On Fri, Feb 27, 2009 at 4:38 AM, GarlicRice  wrote:
> I've never used Mono or even Linux before so I'm a little out of my depth
> here.  I've been given access to a server with Ubuntu installed and I've
> been asked to try to get one of our .NET 2.0 apps running on it.
>
> The first error I got was that System.Runtime.Remoting wasn't in the GAC.  I
> found that surprising but I gave it a copy of the dll.

System libraries included with the Microsoft runtime are, as a rule,
incompatible with mono.  Install the libmono-system-runtime2.0-cil
Ubuntu package.

-- 
Chris Howie
http://www.chrishowie.com
http://en.wikipedia.org/wiki/User:Crazycomputers
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Re moting Problem

2009-02-27 Thread GarlicRice

Hello all,

I've never used Mono or even Linux before so I'm a little out of my depth
here.  I've been given access to a server with Ubuntu installed and I've
been asked to try to get one of our .NET 2.0 apps running on it.

The first error I got was that System.Runtime.Remoting wasn't in the GAC.  I
found that surprising but I gave it a copy of the dll.  Now I'm getting a
TypeInitializationException in the
System.Runtime.Remoting.Channels.SocketCache class with an inner
System.NotImplementedException.

Are these classes really fully implemented or am I missing something?  Would
installing Mono 2.2 fix the problem?  If so will that work on Ubuntu or do I
need to switch to another version of Linux?

Thanks in advance for any advice!

Michael
-- 
View this message in context: 
http://www.nabble.com/Remoting-Problem-tp8034p8034.html
Sent from the Mono - General mailing list archive at Nabble.com.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] SQLClient problems

2009-02-27 Thread Veerapuram Varadhan
On Fri, 2009-02-27 at 08:11 +0100, laas wrote:
> I have set the port to 1433; the server name in the connection string
>  is "SERVER\INSTANCE" and there is only one SQL Server instance on the
> machine.
> 
> 
> The message is not changed.
> 

As Gonzalo pointed out, trunk and 2.4 has quite a lot of SqlClient
improvements and fixes.  One option would be to upgrade to either of
these versions or send me a .pcap (wireshark - mask your server name/ip
address) that captures your unsuccessful connection attempt to the
server.

V. Varadhan

> 
> LAAS
> 
> On Fri, Feb 27, 2009 at 5:31 AM, Veerapuram Varadhan
>  wrote:
> On Thu, 2009-02-26 at 13:25 +0100, laas wrote:
> > SQL Server is working fine. I have another web application
> running on
> > IIS that uses the same database constantly with no errors.
> The problem
> > arise with mono running the sample code on my Debian
> machine.
> > And, again, the strange thing is that one or two times it
> works fine,
> > in the next connection the message is always the same "SQL
> Server does
> > not exist or access denied".
> >
> 
> What is "Data Source/Server" field in your connection string
> set to - IP
> of the box running SQL Server or DNS resolvable name?
> 
> If you are using IP address, it may fail for certain cases
> whenever the
> reverse lookup for the host name fails.
> 
> Have a look at
> https://bugzilla.novell.com/show_bug.cgi?id=407208 -
> fixed after 1.9.x.
> 
> I am not sure whether SQL 2005 Express has dynamic port
> support, if so,
> please choose the default port by disabling dynamic port.
> 
> HTH,
> 
> V. Varadhan
> 
> 
> >
> > Regards
> > LAAS
> >
> > On Thu, Feb 26, 2009 at 1:16 PM, Petit Eric
> 
> > wrote:
> > 2009/2/26 laas :
> > > Hi all,
> > > reading and using the sample code in the following
> page:
> > > http://www.mono-project.com/SQLClient#Testing
> > >
> > > every time i connect to the remote SQL Server
> instance I
> > receive the
> > > following:
> > > "SQL Server does not exist or access denied"
> > > The strange thing is that sometimes the same
> executable file
> > works fine
> > > (with no re-compilation).
> > > The used SQL Server (sql server express 2005)
> allows remote
> > connections and
> > > has TCP/IP protocol turned on. I'm using the code
> referred
> > to the topic "C#
> > > Example using SQL Server Authentication";
> > > Some idea ?
> >
> > You don't have network trouble or SQL server "crash"
> and
> > restart ?
> > > Many thanks in advance
> > > --
> > > [LAAS]
> > > WebSite: http://www.laas02.org
> > > YTSite: http://www.laas02.org/?page_id=17
> > >
> >
> > > ___
> > > Mono-list maillist  -  Mono-list@lists.ximian.com
> > > http://lists.ximian.com/mailman/listinfo/mono-list
> > >
> > >
> >
> >
> >
> > --
> >
> > Cordially.
> >
> > Small Eric Quotations of the days:
> >
> 
> ---
> > If one day one reproaches you that your work is not
> a work of
> > professional, say you that:
> > Amateurs built the arch of Noah, and professionals
> the
> > Titanic.
> >
> 
> ---
> >
> > Few people are done for independence, it is the
> privilege of
> > the powerful ones.
> >
> 
> ---
> >
> > No key was wounded during the drafting of this
> message.
> >
> >
> >
> > --
> > [LAAS]
> > WebSite: http://www.laas02.org
> > YTSite: http://www.laas02.org/?page_id=17
> >
> > ___
> > Mono-list maillist  -  Mono-list@lists.ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
>