User Mac - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:39:57Zhttp://stackoverflow.com/feeds/user/8696http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1583150/c-oracle-data-type-equivalence-with-oracledbtype/1587485#15874851Answer by Mac for C#: Oracle Data Type Equivalence with OracleDbTypeMac2009-10-19T08:15:54Z2009-10-19T08:15:54Z<p>Check <a href="http://stackoverflow.com/questions/1583150/c-oracle-data-type-equivalence-with-oracledbtype/1583402#1583402">APC's links</a> out, they are what you are looking for : the mapping is quite straightforward according to the name of the enumeration.</p>
<p>But as you began to notice, there is something tricky about integers. Here is my mapping :</p>
<ul>
<li><code>Int16</code> : <code>NUMBER(5)</code>.</li>
<li><code>Int32</code> : <code>NUMBER(10)</code>.</li>
<li><code>Int64</code> : <code>NUMBER(19)</code>.</li>
</ul>
<p>The thing is that if you call <a href="http://download.oracle.com/docs/cd/B19306%5F01/win.102/b14307/OracleDataReaderClass.htm#i1005214" rel="nofollow"><code>GetInt64</code></a> on a <code>NUMBER(38)</code> column, you will get an exception even if the value is in the correct range...</p>
http://stackoverflow.com/questions/1565100/casting-to-string-versus-calling-tostring/1565112#15651127Answer by Mac for Casting to string versus calling ToStringMac2009-10-14T09:06:25Z2009-10-14T09:13:47Z<ul>
<li><code>(string)obj</code> <a href="http://msdn.microsoft.com/en-us/library/ms173105.aspx" rel="nofollow">casts</a> <code>obj</code> into a <code>string</code>. <code>obj</code> must already be a <code>string</code> for this to succeed.</li>
<li><code>obj.ToString()</code> gets a string representation of <code>obj</code> by calling the <a href="http://msdn.microsoft.com/en-us/library/system.object.tostring.aspx" rel="nofollow"><code>ToString()</code></a> method. Which is <code>obj</code> itself when <code>obj</code> is a <code>string</code>. This (should) never throw(s) an exception.</li>
</ul>
<p>So in your specific case, both are equivalent.</p>
<p>Note that <code>string</code> is a <a href="http://msdn.microsoft.com/en-us/library/490f96s2.aspx" rel="nofollow">reference type</a> (as opposed to a <a href="http://msdn.microsoft.com/en-us/library/s1ax56ch.aspx" rel="nofollow">value type</a>). As such, it inherits from object and no <a href="http://msdn.microsoft.com/en-us/library/yz2be5wk.aspx" rel="nofollow">boxing</a> ever occurs.</p>
http://stackoverflow.com/questions/1564563/converting-data-from-nvarchar-to-varchar-in-c/1564609#15646098Answer by Mac for Converting data from nvarchar to varchar in C#Mac2009-10-14T06:39:21Z2009-10-14T06:48:03Z<p>There is <strong>nothing</strong> you have to do : all strings in .NET <a href="http://msdn.microsoft.com/en-us/library/9b1s4yhz.aspx" rel="nofollow">are UTF-16 encoded</a> :</p>
<ul>
<li>when you retrieve your <code>NVARCHAR</code> column (using ADO .NET I presume), you automatically get a .NET string (UTF-16, any necessary conversion is automatic).</li>
<li>when you store this .NET string in a <code>VARCHAR</code> column, any necessary conversion from UTF-16 is automatically performed as well.</li>
</ul>
<p><a href="http://msdn.microsoft.com/en-us/library/cc716729.aspx" rel="nofollow">See here</a> for more information on data type mappings for Sql Server in ADO .NET.</p>
<p>You just have to make sure that all your strings can be converted flawlessly from the source character set to the destination character set.</p>
http://stackoverflow.com/questions/1559594/problem-in-oracle-query/1559729#15597290Answer by Mac for Problem in oracle queryMac2009-10-13T11:48:37Z2009-10-13T11:48:37Z<p>If I understood your question well, you select a value (that I will call <code>g_ledger_value</code>) that you want to appear in a different column depending on its sign.</p>
<p>This is how I would do it :</p>
<pre><code>SELECT
CASE WHEN t.g_ledger_value>0 THEN t.g_ledger_value ELSE 0 END AS g_ledger_dr_value,
CASE WHEN t.g_ledger_value<0 THEN t.g_ledger_value ELSE 0 END AS g_ledger_cr_value
FROM
(SELECT g_ledger_value FROM mytable) t;
</code></pre>
http://stackoverflow.com/questions/1551298/get-started-with-oracle-express-edition/1554314#15543143Answer by Mac for Get Started with Oracle Express Edition?Mac2009-10-12T12:30:15Z2009-10-12T13:58:06Z<p>Not to be confused : in Oracle terminology, a database instance (called XE) is automatically created during installation (limitation : there can be only one database instance running at a time in Oracle Express).</p>
<p>What other vendors usually call a database (like in Sql Server) is a <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14220/schema.htm#CNCPT111" rel="nofollow">Schema</a> in Oracle. To create one, use the <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/statements%5F8003.htm#i2065278" rel="nofollow"><code>CREATE USER</code></a> command (and not the <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/statements%5F6014.htm#SQLRF01313" rel="nofollow"><code>CREATE SCHEMA</code></a> command : welcome to the marvelous world of Oracle !), using SQL*Plus or APEX.</p>
http://stackoverflow.com/questions/1542069/visual-studio-2008-how-do-i-setup-automated-copying-of-files-from-source-to-run/1542113#15421131Answer by Mac for Visual Studio 2008 - How do I setup automated copying of files from source to run/debug/deploy areas?Mac2009-10-09T06:29:18Z2009-10-09T06:29:18Z<p>Assuming a .NET project (VB .NET or C# : I believe C++ would need different steps) :</p>
<ol>
<li>Add the file to your VS project.</li>
<li>Select the file inside VS, and set its properties :
<ul>
<li><strong>Build Action</strong> : <em>Content</em></li>
<li><strong>Copy To Output Directory</strong> : <em>Copy always</em> or <em>Copy if newer</em></li>
</ul></li>
</ol>
http://stackoverflow.com/questions/1531007/create-custom-driver-for-system-data-common/1531364#15313641Answer by Mac for Create custom driver for System.Data.CommonMac2009-10-07T12:35:00Z2009-10-07T15:47:52Z<p>If using SQLite as a backend is a possibility, I cannot really see why you could not use an ADO .NET provider to your SQLite database like <a href="http://sqlite.phxsoftware.com/" rel="nofollow">System.Data.SQLite</a>.</p>
<p><hr /></p>
<p>From your comment, I think you are in effect using the ODBC ADO .NET provider for all database connections (System.Data.Odbc). If you need to keep the same scheme, then a custom ODBC provider is the way to go (but then it is plain C native development, and rather painful I believe).</p>
<p>Another way to go would be to add a third parameter to your DB (the first two being the SQL and the connection string) : the ADO .NET provider to be used (like it is <a href="http://msdn.microsoft.com/en-us/library/ms254494.aspx" rel="nofollow">supposed to be done in configuration files</a>, see the <code>providerName</code> attribute). This way you could use any ADO .NET provider available.</p>
<p>Then you could wrap the the SQLite provider into your own, custom, ADO .NET provider, that could include the generation and population of the SQLite DB. Advantage of this solution : pure managed .NET.</p>
http://stackoverflow.com/questions/1522606/unable-to-access-oci-dll-due-to-application-type/1524395#15243951Answer by Mac for Unable to access oci.dll due to application type.Mac2009-10-06T08:55:28Z2009-10-06T08:55:28Z<p>Make sure you have installed the 64 bits version of ODT with ODAC.</p>
<p>Look at <a href="http://stackoverflow.com/questions/1394685/developing-for-windows-server-2003-64-bit-on-windows-xp-32-bit/1398184#1398184">this answer</a> on how to make sure which client version your application will use (some links at the end target more specifically the C# language, but they can be adapted to VB .NEt).</p>
http://stackoverflow.com/questions/1492786/oracleclient-tnsless-connection-with-net/1496599#14965990Answer by Mac for OracleClient + TNSless connection with .NETMac2009-09-30T07:35:05Z2009-09-30T07:35:05Z<p>If your Oracle client is in version 10+, you could also use <a href="http://www.orafaq.com/wiki/EZCONNECT" rel="nofollow">EZCONNECT</a> (which stands for <a href="http://download.oracle.com/docs/cd/B19306%5F01/network.102/b14212/naming.htm#ABC524382SRI12" rel="nofollow">Easy Connect naming method</a>). Your connection string would then look like this :</p>
<pre><code>"Data Source=MyHost:MyPort/MyServiceName;User ID=myUserName;Password=myPassword"
</code></pre>
<p>Combined with <a href="http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database/70901#70901">Oracle Instant Client</a>, it makes the use of Oracle feel almost professional !...</p>
http://stackoverflow.com/questions/1491059/where-to-add-a-folder-in-net-solution-so-that-while-building-the-project-folder/1491162#14911622Answer by Mac for Where to Add a folder in .net solution so that while building the project folder should be created?Mac2009-09-29T08:05:40Z2009-09-29T08:05:40Z<p>If I understood you correctly, you want to create a folder in the output directory as part of the build process. I see two ways to achieve that :</p>
<ol>
<li><p><a href="http://msdn.microsoft.com/en-us/library/ms366724.aspx" rel="nofollow">Tweak your .csproj file using MSBuild tasks</a> (specifically <a href="http://msdn.microsoft.com/en-us/library/s2448zz7.aspx" rel="nofollow">MakeDir</a>) :</p>
<pre><code><Target Name="AfterBuild">
<MakeDir Directories="$(TargetDir)\MyFolder" />
</Target>
</code></pre></li>
<li><p>Use DOS commands in the post-build step : <img src="http://lh6.ggpht.com/%5FdR4%5FIBKyRV0/SsG%5Fds%5FSW1I/AAAAAAAAAGM/MGy3Q5bHBMU/s800/VS2008%5FPostBuild.png" alt="alt text" /></p></li>
</ol>
http://stackoverflow.com/questions/1476128/can-someone-explain-this-bat-code/1476257#14762571Answer by Mac for Can someone explain this bat code?Mac2009-09-25T09:08:56Z2009-09-25T09:08:56Z<p>A complete help for the <code>FOR</code> command can be found <a href="http://technet.microsoft.com/en-us/library/bb490909.aspx" rel="nofollow">on the Microsoft TechNet site</a>. See <a href="http://technet.microsoft.com/en-us/library/cc957361.aspx" rel="nofollow">here for more information on delayed expansion</a> :</p>
<pre><code>// Pseudo code
for each file named *_min.js in the specified directory
n is set to the file name (*_min)
t is set to the file name, excluding the last 4 characters (*)
the file is copied and renamed t.js to the specified directory
</code></pre>
http://stackoverflow.com/questions/1464574/problem-in-mapping-northwind-customer-with-nhibernate0Problem in mapping Northwind Customer with NHibernateMac2009-09-23T07:58:39Z2009-09-23T13:06:19Z
<p>As a beginner on NHibernate (2.1.0), I am trying to set up my first unit test using the famous Northwind database. The test goes like this (the configuration files can be found at the end of this question) :</p>
<pre><code>ISessionFactory sessionFactory=new Configuration().BuildSessionFactory();
ISession session=sessionFactory.OpenSession();
IList<Customer> list=session.CreateCriteria<Customer>().List<Customer>();
Assert.AreEqual(91, list.Count);
</code></pre>
<p>The problem is that <code>list.Count</code> is always 0.</p>
<ul>
<li>I have tried to open the session by providing it my own <code>IDbConnection</code>, on Sql Server 2008, MS Access and SQLite (I am positively 100% sure that the database setups and the connections are valid) to no avail.</li>
<li>I have tried to make the generated SQL show up on the VS2008 output window (see config files at the bottom of this post) but nothing ever shows up.</li>
</ul>
<p>I can only guess at this stage that my configuration is incorrect, but I have no idea how to fix it.</p>
<p><hr /></p>
<ul>
<li><p><em>App.config</em> :</p>
<pre><code><hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property>
<property name="connection.connection_string">Data Source=S:\Work\SVN\src\Northwind\SQL\Northwind.db</property>
<property name='proxyfactory.factory_class'>NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
<property name="show_sql">true</property>
</session-factory>
</hibernate-configuration>
<log4net>
<appender name="DebugSQL" type="log4net.Appender.TraceAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>
</appender>
<root>
<level value="DEBUG" />
<appender-ref ref="DebugSQL" />
</root>
</log4net>
</code></pre></li>
<li><p><em>Customer.cs</em> :</p>
<pre><code>namespace Northwind.DomainModel.NHibernate
{
public class Customer
{
public string CustomerID { get; set; }
public string CompanyName { get; set; }
public string ContactName { get; set; }
public string ContactTitle { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string Region { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string Phone { get; set; }
public string Fax { get; set; }
}
}
</code></pre></li>
<li><p><em>Customer.hbm.xml</em> :</p>
<pre><code><hibernate-mapping
xmlns="urn:nhibernate-mapping-2.2"
assembly="Northwind.DomainModel"
namespace="Northwind.DomainModel.NHibernate"
>
<class name="Customer" table="Customers">
<id name="CustomerID" column="CustomerID" type="String" length="5">
<generator class="assigned" />
</id>
<property name="CompanyName" />
<property name="ContactName" />
<property name="ContactTitle" />
<property name="Address" />
<property name="City" />
<property name="Region" />
<property name="PostalCode" />
<property name="Country" />
<property name="Phone" />
<property name="Fax" />
</class>
</hibernate-mapping>
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1464574/problem-in-mapping-northwind-customer-with-nhibernate/1465871#14658710Answer by Mac for Problem in mapping Northwind Customer with NHibernateMac2009-09-23T13:06:19Z2009-09-23T13:06:19Z<p>Nailed it !</p>
<p>It happens I wanted to play it smart and have the XML mapping file as a dependency of the CS file. In which case the embedded resource seems to bear the name of the first class contained in the CS file instead of the name of the XML file. An image being supposedly worth a thousand words :
<img src="http://lh6.ggpht.com/%5FdR4%5FIBKyRV0/SroWHUe6vxI/AAAAAAAAAGI/NRoSfH6N%5FhA/s800/SO%5F1464574.png" alt="Solution and Assembly" /></p>
<p>So I wrote this to get it to work :</p>
<pre><code>ISessionFactory sessionFactory=new Configuration()
.Configure()
.AddResource(typeof(Customer).FullName, typeof(Customer).Assembly)
.BuildSessionFactory();
</code></pre>
<p>Lessons learned in getting it to work :</p>
<ul>
<li>NHibernate will not complain in any way when you try to use a class with no known mapping. I am not sure I would call that a feature...</li>
<li>Before opening a session with your own <code>IDbConnection</code>, open the connection itself.</li>
<li>You learn more than you intended to when trying to play smart ;-)</li>
</ul>
http://stackoverflow.com/questions/1461376/how-can-i-specify-the-oracle-home-to-use-when-using-system-data-oracleclient/1464255#14642552Answer by Mac for How can I specify the Oracle Home to use when using System.Data.OracleClientMac2009-09-23T06:25:16Z2009-09-23T06:25:16Z<p>You could :</p>
<ul>
<li>change your <code>%PATH%</code> before the oracle client is loaded (using <a href="http://msdn.microsoft.com/en-us/library/z46c489x.aspx" rel="nofollow"><code>SetEnvironmentVariable</code></a>).</li>
<li>use <a href="http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html" rel="nofollow">Oracle Instant Client</a> instead. Some advantages are <a href="http://stackoverflow.com/questions/1160218/is-odp-net-required-for-oracle-11g-client/1341266#1341266">summarized here</a> (bottom line : you can make sure which oracle client is going to be used by your application).</li>
</ul>
http://stackoverflow.com/questions/1459993/problem-with-joining-db-tables/1460046#14600460Answer by Mac for Problem with joining db tablesMac2009-09-22T13:16:57Z2009-09-22T13:16:57Z<p>You seem to be doing a <a href="http://en.wikipedia.org/wiki/Cross%5Fjoin#Cross%5Fjoin" rel="nofollow">cross join</a> here. I suspect you wanted either an <a href="http://en.wikipedia.org/wiki/Cross%5Fjoin#Equi-join" rel="nofollow">equi join</a> or a <a href="http://en.wikipedia.org/wiki/Cross%5Fjoin#Left%5Fouter%5Fjoin" rel="nofollow">left outer join</a>.</p>
http://stackoverflow.com/questions/184489/how-to-get-an-image-stored-as-an-oracle-blob-into-an-image-object/1443596#14435961Answer by Mac for How to get an image stored as an oracle blob into an Image objectMac2009-09-18T10:04:20Z2009-09-18T10:04:20Z<p>Assuming :</p>
<ul>
<li>you are using the Microsoft client (<code>System.Data.OracleClient</code>).</li>
<li>you have a proper <code>OracleConnection</code> instance (<code>connection</code>).</li>
<li>you have an <code>OracleCommand</code> ready (<code>command</code>, based on <code>SELECT my_blob FROM my_table WHERE id=xx</code>).</li>
</ul>
<p>This should go like this :</p>
<pre><code>using (OracleDataReader odr=command.ExecuteReader())
{
reader.Read();
if (!dr.IsDBNull(0))
using (Stream s=(Stream)dr.GetOracleValue(0))
using (Image image=Image.FromStream(s))
return Copy(image);
}
</code></pre>
<p>where Copy is </p>
<pre><code>public static Image Copy(Image original)
{
Image ret=new Bitmap(original.Width, original.Height);
using (Graphics g=Graphics.FromImage(ret))
{
g.DrawImageUnscaled(original, 0, 0);
g.Save();
}
return ret;
}
</code></pre>
<p>See <a href="http://macinsoft.blogspot.com/2009/09/beware-image-object.html" rel="nofollow">my blog post</a> and/or <a href="http://support.microsoft.com/?id=814675" rel="nofollow">KB 814675</a> for why a Copy is necessary.</p>
http://stackoverflow.com/questions/344964/how-do-i-use-databinding-with-windows-forms-radio-buttons/1432075#14320750Answer by Mac for How do I use databinding with Windows Forms radio buttons?Mac2009-09-16T10:02:20Z2009-09-16T10:02:20Z<ol>
<li>Bind the <code>RadioButton</code> that is directly linked to your boolean value (ie is checked when the value is <code>true</code>).</li>
<li><p>Add an event handler to the <code>CheckedChanged</code> event on this <code>RadioButton</code> that looks like the following :</p>
<pre><code>private void radioButton_CheckedChanged(object sender, EventArgs e)
{
foreach (Binding b in ((Control)sender).DataBindings)
b.WriteValue();
}
</code></pre></li>
</ol>
http://stackoverflow.com/questions/1422036/system-data-oracleclient-requires-oracle-client-software-version-8-1-7/1422153#14221532Answer by Mac for System.Data.OracleClient requires Oracle client software version 8.1.7Mac2009-09-14T15:08:49Z2009-09-14T15:08:49Z<p>Perhaps not an answer to your specific question, but for the record it is for this kind of reasons that I always favor <a href="http://www.oracle.com/technology/tech/oci/instantclient/index.html" rel="nofollow">Oracle Instant Client</a> :</p>
<ul>
<li>You don't have to install anything on the target machines (including dev boxes !). So no tricky manual setup and goat sacrificing.</li>
<li>You can make sure that your application will run with the specific client you picked (version, x86/x64).</li>
<li>You could even easily have multiple applications work with different client versions on the same computer.</li>
<li>As a downside, it adds a significant weight to your application (~19Mb minimum), and you can't participate in distributed transactions.</li>
</ul>
<p>If you still can switch, this is the way to go IMHO. Check <a href="http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database/70901#70901">What is the minimum client footprint required to connect C# to an Oracle database?</a> for more information.</p>
http://stackoverflow.com/questions/1420139/how-do-i-detect-oracle-xe/1420644#14206441Answer by Mac for How do I detect Oracle XE?Mac2009-09-14T09:59:13Z2009-09-14T12:32:18Z<p>I've run into the same problem. My solution has been to embed these version specific features in anonymous blocks and test for specific error codes. Something like this :</p>
<pre><code>BEGIN
EXECUTE IMMEDIATE 'CREATE BITMAP INDEX myIndex ON myTable';
EXCEPTION
WHEN OTHERS THEN
IF SQLCODE=-439 THEN -- bitmap index not supported
EXECUTE IMMEDIATE 'CREATE INDEX myIndex ON myTable';
END IF;
END;
</code></pre>
<p>Not exactly what you asked for, but it's been working very well for me.</p>
http://stackoverflow.com/questions/1406187/gracefully-convert-from-unicode-to-single-byte-charset/1411481#14114810Answer by Mac for Gracefully convert from Unicode to single-byte charsetMac2009-09-11T15:06:44Z2009-09-11T15:06:44Z<p><code>TO_CLOB</code> is supposed to convert from national character set to database character set correctly. You won't have any problem if all characters can be mapped.</p>
<p>I then suspect that your problem occurs in the <em>read the file into NCLOB</em> part. <em>Unicode</em> is a rather vague information :</p>
<ul>
<li>XML files are very often encoded in the <a href="http://en.wikipedia.org/wiki/UTF-8" rel="nofollow">UTF-8</a> character set (with or without <a href="http://en.wikipedia.org/wiki/Byte-order%5Fmark" rel="nofollow">Byte Order Mark</a>).</li>
<li>National character set is set to <a href="http://en.wikipedia.org/wiki/UTF-16/UCS-2" rel="nofollow">UTF-16</a> (AL16UTF16) on Oracle by default.</li>
</ul>
<p>A specific conversion is needed to go from one to another. You should first make sure that the NCLOB containing your XML file has the correct information.</p>
http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database/70901#7090120Answer by Mac for What is the minimum client footprint required to connect C# to an Oracle database?Mac2008-09-16T10:06:11Z2009-09-09T08:51:08Z<p>You need an Oracle Client to connect to an Oracle database. The easiest way is to install the <a href="http://www.oracle.com/technology/software/tech/windows/odpnet/index.html" rel="nofollow">Oracle Data Access Components</a>.</p>
<p>To minimize the footprint, I suggest the following :</p>
<ul>
<li>Use the Microsoft provider for Oracle (System.Data.OracleClient), which ships with the framework.</li>
<li>Download the <a href="http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html" rel="nofollow">Oracle Instant Client Package</a> - Basic Lite : this is a zip file with (almost) the bare minimum. I recommend version 10.2.0.4, which is much smaller than version 11.1.0.6.0.</li>
<li>Unzip the following files in a specific folder :
<ul>
<li>v10 :
<ul>
<li>oci.dll</li>
<li>orannzsbb10.dll</li>
<li>oraociicus10.dll</li>
</ul></li>
<li>v11 :
<ul>
<li>oci.dll</li>
<li>orannzsbb11.dll</li>
<li>oraociei11.dll</li>
</ul></li>
</ul></li>
<li>On a x86 platform, add the CRT DLL for Visual Studio 2003 (msvcr71.dll) to this folder, as Oracle guys forgot to <a href="http://support.microsoft.com/kb/326922" rel="nofollow">read this</a>...</li>
<li>Add this folder to the PATH environment variable.</li>
<li>Use the <a href="http://download.oracle.com/docs/cd/B19306%5F01/network.102/b14212/naming.htm#ABC524382SRI12" rel="nofollow">Easy Connect Naming</a> method in your application to get rid of the infamous TNSNAMES.ORA configuration file. It looks like this : <code>sales-server:1521/sales.us.acme.com</code>.</li>
</ul>
<p>This amounts to about <strong>19Mb</strong> (v10).</p>
<p>If you do not care about sharing this folder between several applications, an alternative would be to ship the above mentioned DLLs along with your application binaries, and skip the PATH setting step.</p>
<p>If you absolutely need to use the Oracle provider (Oracle.DataAccess), you will need :</p>
<ul>
<li>ODP .NET 11.1.0.6.20 (the first version which allegedly works with Instant Client).</li>
<li>Instant Client 11.1.0.6.0, obviously.</li>
</ul>
<p>Note that I haven't tested this latest configuration...</p>
http://stackoverflow.com/questions/1394685/developing-for-windows-server-2003-64-bit-on-windows-xp-32-bit/1398184#13981841Answer by Mac for Developing for Windows Server 2003 64 bit on Windows XP 32 bitMac2009-09-09T07:57:45Z2009-09-09T08:39:33Z<p>Straightforward solution : you should install the Oracle client according to the platform (x64 on a x64 machine). The reason is that your .NET application is very likely to be built in AnyCPU configuration, which means it will run as a x64 application on a x64 platform. It then can only load x64 native libraries...</p>
<p>Note that when it comes to Oracle, I like to use <a href="http://www.oracle.com/technology/tech/oci/instantclient/index.html" rel="nofollow">Oracle Instant Client</a> :</p>
<ul>
<li>You don't have to install anything on the target machines (including dev boxes !).</li>
<li>You can make sure that your application will run with the specific client you picked (version, x86/x64).</li>
<li>You could even easily have multiple applications work with different client versions on the same computer.</li>
<li>As a downside, it adds a significant weight to your application (~19Mb minimum).</li>
</ul>
<p>Check <a href="http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database/70901#70901">What is the minimum client footprint required to connect C# to an Oracle database?</a> for more information.</p>
<p>In your particular case, I recommend setting up a Visual Studio project that will work on x86 as well as x64 machines : check my blog post <a href="http://macinsoft.blogspot.com/2009/05/oracle-instant-client-in-visual-studio.html" rel="nofollow">Oracle Instant Client in Visual Studio</a>. Then here is a guidance on <a href="http://macinsoft.blogspot.com/2009/05/oracle-not-so-instant-client.html" rel="nofollow">how to configure a WiX package for Oracle Instant Client</a> targeting x86 or x64 machines. If you use another deployment strategy, just make sure you ship the correct client according to the target platform.</p>
http://stackoverflow.com/questions/1394435/rules-validation-on-data-or-domain-layer/1394668#13946680Answer by Mac for Rules Validation on Data or Domain layer?Mac2009-09-08T15:30:52Z2009-09-08T15:30:52Z<p>They definitely belong to your <em>Domain Layer</em> (where you could implement <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.idataerrorinfo.aspx" rel="nofollow"><code>IDataErrorInfo</code></a>, but that would only be useful for Windows Forms or WPF applications I think).</p>
<p>It looks like this validation philosophy is very similar to the one exposed by <a href="http://www.paulstovell.com/" rel="nofollow">Paul Stovell</a> (check out <a href="http://www.codeproject.com/KB/cs/DelegateBusinessObjects.aspx" rel="nofollow">this article of his</a>). It is very powerful and I use it a lot. Basically :</p>
<blockquote>
<ol>
<li>There is nothing wrong with having an invalid business object, so long as you don't try to persist it.</li>
<li>Any and all broken rules should be retrievable from the business object, so that data binding, as well as your own code, can see if there are errors and handle them appropriately.</li>
</ol>
</blockquote>
<p>So, as ignorant as your <em>Domain Layer</em> is of persistence matters, I believe your entities should be at least aware of when they are being persisted. The <code>Save</code> method is a way to make them responsible of their own persistence (that they can subsequently delegate to a <em>Data Access Layer</em>). I can't see anything wrong with this.</p>
http://stackoverflow.com/questions/1389552/what-are-the-net-frameworks-currently-available-that-help-build-business-applica2What are the .NET frameworks currently available that help build business applications ?Mac2009-09-07T13:57:49Z2009-09-08T10:38:32Z
<p>And what are their pros/cons in terms of maturity, community support, ease of development ?...</p>
<p>In my mind, a business application framework should provide :</p>
<ul>
<li>ORM integration (possibly relying on existing solutions like NHibernate, the Entity Framework...).</li>
<li>a validation library.</li>
<li>UI integration components (ASP .NET and/or Windows Forms and/or WPF...).</li>
</ul>
http://stackoverflow.com/questions/285704/constraint-vs-validation/1389660#13896600Answer by Mac for Constraint vs. Validation?Mac2009-09-07T14:26:30Z2009-09-07T14:26:30Z<p>To take your example, part of your validation for the <code>Person</code> should be a rule that checks that its <code>SSN</code> is not a duplicate (by the way : in case of duplication, how do you know which one is right ?).</p>
<p>If you run into trouble, because your <code>PersonCollection</code> is in fact an <code>IDictionary</code> keyed by <code>SSN</code>s, wait until a <code>Person</code> is validated before you add it to the collection. An object should be invalid temporarily enough to let you do that.</p>
<p>For more information on validation, check <a href="http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions/133045#133045">my answer</a> to <a href="http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions">Business Objects, Validation And Exceptions</a>.</p>
http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389475#13894751Answer by Mac for Trying to run 64-bit tests on 32-bit windowsMac2009-09-07T13:38:30Z2009-09-07T13:38:30Z<p>Check the <code>%PROCESSOR_ARCHITECTURE%</code> environment variable :</p>
<ul>
<li><code>x86</code> on a 32-bit machine.</li>
<li><code>AMD64</code> on a 64-bit machine (cf. <a href="http://support.microsoft.com/kb/888731" rel="nofollow">here</a>).</li>
</ul>
http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389137#13891370Answer by Mac for Trying to run 64-bit tests on 32-bit windowsMac2009-09-07T12:18:25Z2009-09-07T12:18:25Z<p>Not an answer to the the specific question you asked, but you should perhaps consider building your app on an x64 machine, which could run 32-bits tests as well as 64-bits tests...</p>
http://stackoverflow.com/questions/1389081/what-does-the-operator-stands-for-in-ruby/1389105#13891052Answer by Mac for What does the operator ||= stands for in ruby?Mac2009-09-07T12:11:38Z2009-09-07T12:11:38Z<p>Cannot get any better explanation than <a href="http://www.softiesonrails.com/2007/2/6/ruby-101-for-net-developers-the-strange-OR-operator" rel="nofollow">The strange ||= operator</a> :</p>
<pre><code>a ||= "baseball"
</code></pre>
<blockquote>
<p><code>a</code> will become <code>"baseball"</code> if it was <code>nil</code>
(or <code>false</code>) before, otherwise it will
just keep its original value.</p>
</blockquote>
http://stackoverflow.com/questions/1361341/c-how-to-swap-the-position-of-two-winform-controls/1361435#13614350Answer by Mac for C#: How to swap the position of two winform controlsMac2009-09-01T09:16:59Z2009-09-01T09:16:59Z<p>I don't think you can do exactly what you are trying to achieve. But your requirements seem strange to me : you can perfectly visually swap two controls in a form without any constraint on their respective index in their parent's <code>ControlCollection</code>.</p>
<p>The closest you could get would be to store your controls in a <code>Panel</code> :</p>
<ul>
<li>You'd have <code>PanelA</code> and <code>PanelB</code>.</li>
<li>At first, <code>PanelA</code> would contain <code>Alice</code> and <code>PanelB</code> would contain <code>Bob</code>.</li>
<li>When swapping, store <code>Bob</code> into <code>PanelA</code> and <code>Alice</code> into <code>PanelB</code>.</li>
</ul>
<p><code>Alice</code> and <code>Bob</code> would not appear directly in the <code>ControlCollection</code> though, only the <code>Panel</code>s would.</p>
http://stackoverflow.com/questions/1361010/how-can-i-include-my-database-in-the-continuous-integration-process/1361263#13612631Answer by Mac for How can I include my database in the continuous integration process?Mac2009-09-01T08:36:07Z2009-09-01T08:36:07Z<p>First of all, I think your database should be included in your source control strategy. Basic principles to achieve this have been beautifully summed up in <a href="http://odetocode.com/Blogs/scott/archive/2008/02/03/11746.aspx" rel="nofollow">K. Scott Allen series</a>. You can also check <a href="http://martinfowler.com/articles/evodb.html" rel="nofollow">Evolutionary Database Design by Martin Fowler</a>. And for more practical information, check the answers to <a href="http://stackoverflow.com/questions/988426/how-should-you-build-your-database-from-source-control">How should you build your database from source control?</a>.</p>
<p>As I wrote in <a href="http://stackoverflow.com/questions/988426/how-should-you-build-your-database-from-source-control/1017208#1017208">my answer</a>, I maintain two sets of scripts : one set that can build the database from scratch, and one that can upgrade a given database from one version to the last. As part of a CI strategy :</p>
<ul>
<li>The database on the CI server should be rebuilt from scratch using these scripts. You can then check that your scripts are in working condition.</li>
<li>In a perfect world, I should be able to perform an upgrade from version N-1 to version N of the database, and compare the obtained schema to the schema of the previous database. I am still working on it...</li>
<li>Test data should be injected in the database, allowing for unit testing of your application to be performed (you could <a href="http://stackoverflow.com/questions/672716/how-to-version-control-sql-server-databases/1294224#1294224">use bcp</a> for this).</li>
</ul>
http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database/70901#70901Comment by Mac on What is the minimum client footprint required to connect C# to an Oracle database?Mac2009-12-07T10:29:19Z2009-12-07T10:29:19ZInstant Client is licensed under the OTN Development and Distribution License (cf. <a href="http://www.oracle.com/technology/software/htdocs/client_lic.html" rel="nofollow">oracle.com/technology/software/…</a>). Which means you can freely redistribute it with your application (cf. <a href="http://www.oracle.com/technology/tech/oci/instantclient/ic-faq.html#A4379" rel="nofollow">oracle.com/technology/tech/…</a>).http://stackoverflow.com/questions/1576791/what-orm-frameworks-for-net-and-oracle-do-you-like-bestComment by Mac on What ORM frameworks for .NET and Oracle Do You Like Best? Mac2009-10-16T15:05:12Z2009-10-16T15:05:12ZI don't think there can be a right/wrong answer to this question : it should therefore be turned into a community wiki.http://stackoverflow.com/questions/1565100/casting-to-string-versus-calling-tostring/1565112#1565112Comment by Mac on Casting to string versus calling ToStringMac2009-10-14T09:26:10Z2009-10-14T09:26:10ZYou are obviously right about the conversion operator. But for the sake of non confusion, I'll keep it in the comments. Thanks for pointing this out.http://stackoverflow.com/questions/1564563/converting-data-from-nvarchar-to-varchar-in-cComment by Mac on Converting data from nvarchar to varchar in C#Mac2009-10-14T06:50:47Z2009-10-14T06:50:47ZWhat specific problems did you have ?http://stackoverflow.com/questions/1564563/converting-data-from-nvarchar-to-varchar-in-cComment by Mac on Converting data from nvarchar to varchar in C#Mac2009-10-14T06:50:09Z2009-10-14T06:50:09ZSql Server I presume ? Database access using ADO .NET ?http://stackoverflow.com/questions/1564563/converting-data-from-nvarchar-to-varchar-in-c/1564609#1564609Comment by Mac on Converting data from nvarchar to varchar in C#Mac2009-10-14T06:48:59Z2009-10-14T06:48:59ZUTF-16, according to the link I just added.http://stackoverflow.com/questions/1559594/problem-in-oracle-queryComment by Mac on Problem in oracle queryMac2009-10-13T11:50:54Z2009-10-13T11:50:54ZThis query is much too complicated (ie contains too many elements unrelated to your question). Can you simplify it so that we can see more clearly what your question lies exactly ?http://stackoverflow.com/questions/1126749/oledb-vs-odbc-does-one-of-them-not-require-driver-installation-for-all-oracle-m/1126784#1126784Comment by Mac on OleDB vs ODBC: does one of them NOT require driver installation FOR ALL Oracle, MySQL, SQL Server?Mac2009-10-13T07:53:31Z2009-10-13T07:53:31ZODP .NET requires a native client. You could ship Instant Client (cf. <a href="http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database/70901#70901" rel="nofollow" title="what is the minimum client footprint required to connect c to an oracle database">stackoverflow.com/questions/70602/…</a>) or use another (commercial) Oracle provider (cf. <a href="http://www.datadirect.com/products/net/net%5Ffor%5Foracle/index.ssp" rel="nofollow" title="what is the minimum client footprint required to connect c to an oracle database">datadirect.com/products/net/…</a> or <a href="http://www.devart.com/dotconnect/oracle/" rel="nofollow" title="what is the minimum client footprint required to connect c to an oracle database">devart.com/dotconnect/oracle</a>).http://stackoverflow.com/questions/1551298/get-started-with-oracle-express-edition/1554314#1554314Comment by Mac on Get Started with Oracle Express Edition?Mac2009-10-12T13:57:21Z2009-10-12T13:57:21ZThat's right : my phrasing was misleading.http://stackoverflow.com/questions/1531007/create-custom-driver-for-system-data-common/1531364#1531364Comment by Mac on Create custom driver for System.Data.CommonMac2009-10-07T15:48:48Z2009-10-07T15:48:48ZI am skeptical : the WS cannot be totally unaware of the ADO .NET provider that is going to be used, because a plain database connection has to be created at some point (System.Data.Common.DbConnection is abstract). See my answer for more, new developments.http://stackoverflow.com/questions/1461376/how-can-i-specify-the-oracle-home-to-use-when-using-system-data-oracleclient/1464255#1464255Comment by Mac on How can I specify the Oracle Home to use when using System.Data.OracleClientMac2009-09-28T08:27:02Z2009-09-28T08:27:02ZThere you go (slightly more complicated that what I said in my previous comment, but that was the spirit of it) : <a href="http://msdn.microsoft.com/en-us/library/ms682586%28VS.85%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1461376/how-can-i-specify-the-oracle-home-to-use-when-using-system-data-oracleclient/1464129#1464129Comment by Mac on How can I specify the Oracle Home to use when using System.Data.OracleClientMac2009-09-28T08:23:11Z2009-09-28T08:23:11ZYou say you are using the Microsoft provider for Oracle (System.Data.OracleClient). I am very surprised (to say the least) that setting this parameter that is specific to the Oracle provider (Oracle.DataAccess) should solve your problem.http://stackoverflow.com/questions/1485955/a-in-xml-file-is-valid-or-notComment by Mac on å in xml file is valid or not?Mac2009-09-28T08:19:46Z2009-09-28T08:19:46ZWhat's the encoding of the XML file ? Does it fit with the encoding declaration at the top of the file (if any) ?http://stackoverflow.com/questions/1461376/how-can-i-specify-the-oracle-home-to-use-when-using-system-data-oracleclient/1464255#1464255Comment by Mac on How can I specify the Oracle Home to use when using System.Data.OracleClientMac2009-09-26T00:04:34Z2009-09-26T00:04:34ZBecause of the way DLLs are loaded on the Windows platform : the application folder is searched first, then the %PATH%. I'll get you a link as soon as I can (I'm on my phone right now).http://stackoverflow.com/questions/1464574/problem-in-mapping-northwind-customer-with-nhibernate/1465871#1465871Comment by Mac on Problem in mapping Northwind Customer with NHibernateMac2009-09-23T13:07:09Z2009-09-23T13:07:09ZSide note : I still cannot see any SQL in the output...