 |
|
 |
Do somebody know what is the open-source project which can be used to create database independent SQL queries?
|
|
|
|
 |
|
 |
Hello,
Anyone interested to help to provide support for EL 2.0? I don't mind giving helping hand.
Thanks
Rams
|
|
|
|
 |
|
 |
It could be nice, it is fairly easy to do.
Is the mysql connector for .NET2 available ?
|
|
|
|
 |
|
 |
Hi guys. Did you get anything for ent lib 2.0?
You first version was very interesting.
Regards
Mobil
|
|
|
|
 |
|
|
 |
|
 |
At the top of the page it says this article is out of date, is the DAAB out of date, also a below post says that they updated the DAAB to support stored procedures, where can I get a copy of the updated DAAB for MySQL.
Thanks,
Frank Walsh
|
|
|
|
 |
|
 |
If someone can open a SVN or CVS for the latest version (which works with DAAB June 2005) and provide me access, I'll put the sources on it.
I've also a version provided by a reader which supports stored procedures of MySQL5, but I haven't be able to test it.
|
|
|
|
 |
|
 |
Hi, I modified your code to work with MySql 5.0 stored procedures. I want to forward it to you if you want it, but I can't seem to find your contact info.
|
|
|
|
 |
|
|
 |
|
 |
Hi, I'm beginning using MySql in dotnet, could you send me this class?
Thank in advance.
Atte
gadc
PD. Do you know where I can find one for MSAccess 2003?
Thanks again.
Gerardo Diaz
|
|
|
|
 |
|
 |
Where can I get a copy of this updated version of the DAAB that works with stored procedures.
Thanks,
Frank Walsh
|
|
|
|
 |
|
 |
I'm very interesting!!
Can I have ?
|
|
|
|
 |
|
 |
can you send me a version?thanks
|
|
|
|
 |
|
 |
DbCommandWrapper class has been eliminated in Enterprise Library DAAB.
Do you have a new fix for it?
|
|
|
|
 |
|
 |
I'm afraid you have to write it yourself
|
|
|
|
 |
|
 |
When I use this and access a local MySQL Server Database it works just fine. When I change the Host to the production server on the network my application just hangs and never returns a DataSet or Generates an error.
Has anyone else run into this?
|
|
|
|
 |
|
 |
I successful compiled my EnterpriseLibrary with the Mysql classes,but during runtime i get always back the message below.
If i have a look inside my Microsoft.Practices.EnterpriseLibrary.Data.dll and i can find there the:
public class MySqlDatabase : Microsoft.Practices.EnterpriseLibrary.Data.Database
Member of Microsoft.Practices.EnterpriseLibrary.Data.MySql
------------------------------
------------------------------
Could not load type 'Microsoft.Practices.EnterpriseLibrary.Data.MySql.MySqlDatabase' from assembly 'Microsoft.Practices.EnterpriseLibrary.Data'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.TypeLoadException: Could not load type 'Microsoft.Practices.EnterpriseLibrary.Data.MySql.MySqlDatabase' from assembly 'Microsoft.Practices.EnterpriseLibrary.Data'.
Source Error:
Line 13: protected void Page_Load(object sender, EventArgs e)
Line 14: {
Line 15: Database db = DatabaseFactory.CreateDatabase();
Line 16: string SqlCommand = "select * from xuser";
Line 17: DataSet ds = db.ExecuteDataSet(CommandType.Text, SqlCommand);
|
|
|
|
 |
|
 |
where is MySqlPermissionAttribute
|
|
|
|
 |
|
 |
You have to write it yourself
|
|
|
|
 |
|
 |
I'm a novice use Microsoft Enterprise Library . I have modify Microsoft Enterprise Library source add mysql DataBase.but when i use config console to reference mysql but can not reflect mysql database ,please help me
|
|
|
|
 |
|
 |
You have to write it yourself
|
|
|
|
 |
|
 |
I'm a novice use Microsoft Enterprise Library ,i modify Microsoft Enterprise Library source ,but when i use config console to config application,can not find mysql.please help me,thanks
|
|
|
|
 |
|
 |
You have to write it yourself
|
|
|
|
 |
|
 |
I recall one of the MySql connectors (.NET or ODBC, can't remember which) had difficulties with inserts approaching 70 megabytes. Is this still the case?
Also, I encountered connection leaks resulting from, I believe, improper connection handling in MySqlDataReader vs MySqlDataAdapter. Have you noticed this, or know of it being corrected?
Due to internal politics I have to use MySql for a particular project, but don't want to break something I already fixed just to get a later version that may correct other things. It's already bad enough we weren't able to migrate this database to a new instance on a more centralized machine.
|
|
|
|
 |
|
 |
You are right that in some cases it's useful to store large XML files. But it's a general bad idea to store blobs in databases. Instead use a filer, a file name generator and store the file names (yes, more work !).
I hope there is no more leak in the Connector/.NET for MySQL as it is a release version now.
But i've read yesterday that there is a leak in the Data Application Block (see its workspace's comments at gotdotnet). It is corrected but you need the patch (downloadable there).
|
|
|
|
 |