Jump to content
Xtreme .Net Talk

michael_hk

Avatar/Signature
  • Posts

    199
  • Joined

  • Last visited

Everything posted by michael_hk

  1. Without any details of the error it's hard to tell... My bet is you are using some DLL that are not available on that machine.
  2. Hi guys, I have little experience with remoting and now am trying to build an app. using .net remtoing. And now I am stuck on using whether marshal-by-value or marshal-by-reference I have read Rockford's "Expert One-on-One Visual Basic .NET Business Objects" and in his framework he used marshal-by-value object. From his book... OK, that means I will potentially pull A LOT objects across the network when I try to get a, say a customer, object. My question is is this possible to lazy load some references instead of load EVERYTHING at once when serializing the customer object? Do I need to code a lot to handle this? Any resources will be great. Thanks. :) Michael
  3. http://www.15seconds.com/issue/030806.htm
  4. Agree. But in reality, many programmers just won't care what all this stuff is about as long as their programmes work. Eg, they don't think making everything public is a problem. The crux is your and their standard are different.
  5. http://xtremedotnettalk.com/showthread.php?t=87488
  6. You can find the answers with these two searches in Google 1. Sql Server regular expression 2. Oracle regular expression
  7. Afraits, your sample code is appreciated. It shows what developers should avoid in their code.
  8. You may consider raising "Max Pool Size" to alleviate the timeout problem.
  9. Hi PlausiblyDamp, I read somewhere on the web that calling connection.Dispose will destroy the connection entirely and doesn't return it to the pool. Correct? Hi auxcom, If you want to disable connection pooling, just set Pooling=false in your connection string.
  10. LOL :D :D :D
  11. SHOW DATABASES http://dev.mysql.com/doc/mysql/en/show-databases.html SHOW TABLES http://dev.mysql.com/doc/mysql/en/show-tables.html
  12. System.Windows.Forms.SystemInformation.ComputerName
  13. As far as I know, calling .Dispose() will destroy the connection and the connection will not return to the pool. So make sure you know the effect of calling it.
  14. APaule, thanks for sharing. I always used @@IDENTITY before. :)
  15. IIS, no doubt.
  16. What have you tried so far?
  17. IMO, the "Wrox Professional XXX" series is good for beginners.
  18. Seems the String.IndexOf and String.Replace functions are enough to do the job.
  19. Which aspects? Administration? Development?
  20. I like this solution. :p
  21. Take a look at the following entry SQL Server BOL -> INSERT...SELECT
  22. The doc can get you started.
×
×
  • Create New...