Mac

1,995
Reputation
179 views

Registered User

Name Mac
Member for 1 year
Seen 2 days ago
Website
Location FR
Age 35
Oct
19
answered C#: Oracle Data Type Equivalence with OracleDbType
Oct
16
comment What ORM frameworks for .NET and Oracle Do You Like Best?
I don't think there can be a right/wrong answer to this question : it should therefore be turned into a community wiki.
Oct
15
accepted Converting data from nvarchar to varchar in C#
Oct
14
comment Casting to string versus calling ToString
You 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.
Oct
14
revised Casting to string versus calling ToString
added 337 characters in body; added 233 characters in body
Oct
14
answered Casting to string versus calling ToString
Oct
14
revised Converting data from nvarchar to varchar in C#
edited tags
Oct
14
comment Converting data from nvarchar to varchar in C#
What specific problems did you have ?
Oct
14
comment Converting data from nvarchar to varchar in C#
Sql Server I presume ? Database access using ADO .NET ?
Oct
14
comment Converting data from nvarchar to varchar in C#
UTF-16, according to the link I just added.
Oct
14
revised Converting data from nvarchar to varchar in C#
added 369 characters in body
Oct
14
answered Converting data from nvarchar to varchar in C#
Oct
13
comment Problem in oracle query
This 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 ?
Oct
13
answered Problem in oracle query
Oct
13
comment OleDB vs ODBC: does one of them NOT require driver installation FOR ALL Oracle, MySQL, SQL Server?
ODP .NET requires a native client. You could ship Instant Client (cf. stackoverflow.com/questions/70602/…) or use another (commercial) Oracle provider (cf. datadirect.com/products/net/… or devart.com/dotconnect/oracle).
Oct
12
revised Get Started with Oracle Express Edition?
added 36 characters in body
Oct
12
comment Get Started with Oracle Express Edition?
That's right : my phrasing was misleading.
Oct
12
answered Get Started with Oracle Express Edition?
Oct
12
awarded  
Oct
9
accepted Visual Studio 2008 - How do I setup automated copying of files from source to run/debug/deploy areas?
Oct
9
answered Visual Studio 2008 - How do I setup automated copying of files from source to run/debug/deploy areas?
Oct
8
accepted Create custom driver for System.Data.Common
Oct
7
comment Create custom driver for System.Data.Common
I 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.
Oct
7
revised Create custom driver for System.Data.Common
added 876 characters in body
Oct
7
answered Create custom driver for System.Data.Common
Oct
6
answered Unable to access oci.dll due to application type.
Sep
30
answered OracleClient + TNSless connection with .NET
Sep
29
answered Where to Add a folder in .net solution so that while building the project folder should be created?
Sep
28
comment How can I specify the Oracle Home to use when using System.Data.OracleClient
There you go (slightly more complicated that what I said in my previous comment, but that was the spirit of it) : msdn.microsoft.com/en-us/library/…
Sep
28
comment How can I specify the Oracle Home to use when using System.Data.OracleClient
You 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.
Sep
28
comment å in xml file is valid or not?
What's the encoding of the XML file ? Does it fit with the encoding declaration at the top of the file (if any) ?
Sep
26
comment How can I specify the Oracle Home to use when using System.Data.OracleClient
Because 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).
Sep
25
accepted Problem in mapping Northwind Customer with NHibernate
Sep
25
answered Can someone explain this bat code?
Sep
23
comment Problem in mapping Northwind Customer with NHibernate
Side note : I still cannot see any SQL in the output...
Sep
23
answered Problem in mapping Northwind Customer with NHibernate
Sep
23
revised Problem in mapping Northwind Customer with NHibernate
Fixed the mapping
Sep
23
revised Problem in mapping Northwind Customer with NHibernate
Fixed CustomerID field length
Sep
23
comment Problem in mapping Northwind Customer with NHibernate
Thanks for pointing this out : stupid copy & paste from some blog I found. But that means you read the whole thing !
Sep
23
comment Problem in mapping Northwind Customer with NHibernate
Thanks for your answer. My configuration lies in the App.config, and I can tell it is correctly loaded because of all the exceptions that were thrown due to the many errors I had to fix ;-) And your second point does not solve the problem.
Sep
23
comment How can I specify the Oracle Home to use when using System.Data.OracleClient
Just ship it along your application : stackoverflow.com/questions/70602/…
Sep
23
asked Problem in mapping Northwind Customer with NHibernate
Sep
23
answered How can I specify the Oracle Home to use when using System.Data.OracleClient
Sep
22
answered Problem with joining db tables
Sep
22
comment Problem with joining db tables
What set of result are you trying to get (unclear to me) ? What are the relations between the two tables (is there a foreign key) ?
Sep
18
accepted How to get an image stored as an oracle blob into an Image object
Sep
18
answered How to get an image stored as an oracle blob into an Image object
Sep
17
comment Favorite SQLPLUS tips and tricks
Shouldn't this question be a community wiki ?
Sep
16
answered How do I use databinding with Windows Forms radio buttons?
Sep
16
comment How do I use databinding with Windows Forms radio buttons?
And don't forget to make this change again every time you edit your DataSet ! :-(