Tagged Questions

31
votes
1answer
788 views

Strange LINQ To Entities Exception

I am using a LINQ statement that selects from various tables information I need to fill some Post / Post Comment style records. I'm getting a funny exception saying that the object must implement ...
9
votes
4answers
5k views

Error 175: The specified data store provider cannot be found

I'm using VS2010 with the MySQL .NET Connector. My project that used to work started reporting: Error 175: The specified data store provider cannot be found, or is not valid. I don't know why, ...
9
votes
4answers
460 views

Dealing with huge SQL resultset

I am working with a rather large mysql database (several million rows) with a column storing blob images. The application attempts to grab a subset of the images and runs some processing algorithms ...
8
votes
2answers
298 views

Dapper mapping MySql BIT(1) data type to ulong instead of boolean

Please has anyone come across the above situation with Dapper and MySQL. In all my tables in MySQL (5.1), where the data type is BIT(1) or BIT, Dapper simply return such field as ulong (UInt64). I ...
6
votes
6answers
250 views

Is it wise decision to move from .NET to Java EE or RoR?

To develop a new project we are thinking to train .NET people learning either Java EE or Ruby on Rails. This decision is just because of open source and to avoid purchasing of operating system also ...
6
votes
3answers
856 views

Is there any (performance) difference between Debug and Release?

I'm using MySql Connector .NET to load an account and transfer it to the client. This operation is rather intensive, considering the child elements of the account to load. In Debug mode, it takes, at ...
6
votes
5answers
679 views

Multithreading and database connection(s)

So I'm trying to figure out best practices on my database connection. I have a large .NET GUI that serves as the front end for the MySQL db. Currently I open a connection on application load and use ...
6
votes
18answers
1k views

Can an open source databases like MySQL support my web site's load?

I'm about to start developing a product (in .NET), and I'm evaluating open source database engines in order to avoid adding licensing costs to the overall cost of my product. Which ones do you know ...
6
votes
6answers
398 views

Using MySql From .Net - Licensing Concerns

I am working on a project and trying to determine what platform to use. Right now, my first choice would be to use ASP.Net MVC with a MySql database. My concern with this is that the MySql drivers ...
5
votes
1answer
748 views

MySQL Entity Framework 4.0 Stored Procedure Field Mapping

Has anyone here used MySQL with the entity framework 4.0 and stored procedures? When I add a SP, it does not show any of my fields that I need to input. I also see no way to manually add them. ...
5
votes
2answers
515 views

Free OLAP solution for .NET running on Mono / MySQL

I'm developing my university graduation project and I'd like to include an OLAP-based reporting module. In the past, I've used Mondrian with JPivot as an OLAP solution for Java projects and I'm ...
5
votes
3answers
186 views

Data Partition in C#

I want to distribute a large amount of data to different C# applications. For example, my table contains millions of records. I would like to specify that first 3 millions records are processed by ...
5
votes
7answers
399 views

Apart from initial cost, are there any other benefits of using MySQL over MSQL server with .net?

I've used both and I've found MySql to have several frustrating bugs, limited support for: IDE integration, profiling, integration services, reporting, and even lack of a decent manager. Total cost of ...
5
votes
4answers
2k views

Deploy MySQL Server + DB with .Net application

HI All, We have a .Net 2.0 application which has a MySQL backend. We want to be able to deploy MySQl and the DB when we install the application and im trying to find the best solution. The current ...
4
votes
1answer
562 views

.NET MySQL Connector Conflicting DbProviderFactories

I'm using the .NET MySQL Connector with Entity Framework 4, and everything worked great but I wanted to package the MySQL client DLL files with my application when deployed on servers so we don't have ...
4
votes
5answers
110 views

What is the profession / preferred way to handle input validation

I am new to C# and SQL. But over the last few years while learning both in college a question really begins to burn inside me. Here it is: It seems to me that there are really two very generic ways ...
4
votes
2answers
223 views

Connecting to MySQL using mono on Solaris

I'm trying to use a MySQL database using mono 2.8.1 on Solaris 10. To do that, I'm trying to use the official MySQL Connector/Net. But I'm getting the following exception: ...
4
votes
2answers
124 views

How to connect to a MySQL database inside the .NET framework?

I'm opening a discussion here on a subject I couldn't find any answer good enough to be called a final answer: MySQL and .NET. While I know there is a lot of ways to make this connection, I'm trying ...
4
votes
1answer
872 views

BLOB in MySQL with DataSet in C#

I would like to insert a PDF file in a MySQL database, in a blob. Here is the code I'm using to insert (I use a WebService and a DataSet): FileStream fs = new FileStream(fileName, ...
4
votes
2answers
300 views

Inserting into two tables with C# and MySQL

I'm currently writing a webapp in C#, and it requires me to gather new user information on a signup form. The information needs to be entered into two seperate tables, one for user information such as ...
4
votes
2answers
706 views

SocketException : No such host is known

I want to connect to mysql database from my asp page.So for that as per what my hosting providers told i used the connection string where server is given as "localhost:3309" Dim myConnection As ...
4
votes
3answers
4k views

Convert DateTime for MySQL using C#

I want to change the DateTime for MySQL in C#. My MySQL database only accept this format 1976-04-09 22:10:00. In C# have a string who have a date value: string str = "12-Apr-1976 22:10"; I want ...
4
votes
1answer
830 views

C# MySqlParameter problem

(int) faultsGroup is 0 or 1 but i always get this error: Column 'FaultGroup' cannot be null Does anyone tell me why? Syntax looks ok. MySqlCommand cmdAdd = new MySqlCommand("INSERT INTO Faults (" + ...
4
votes
5answers
571 views

choose MySQL or choose SQL Server Express (free)?

I need to develop a mid-sized Inernet facing web site (e.g. less than 1000 users) for information sharing and simple workflow. Since limitation of budget, I am choosing free database. And since the ...
4
votes
4answers
2k views

Connection Lifetime=0 in MySql connection string

What exactly does Connection Lifetime=0 mean in a connection string?
3
votes
1answer
62 views

C# with MySql and Unicode characters

My problem is when using C# and MySQL database to save some records by sending parameters. Although i have already set the charset as Utf-8 and i can see the unicode characters correctly, the problem ...
3
votes
5answers
707 views

MySQL Query To Retrieve Data With Column Names

I am writing some tool which has to retrieve column names of the retrieved data set when any query is applied to it. If you're familiar with phpMyAdmin, you would realize the SQL pane does what is it ...
3
votes
1answer
506 views

Attempted to read past end of the stream error in MySQL

I'm running into a problem with MySQL where I have the following error. MySqlClient.MySqlException: Fatal error encountered during command execution. ---> MySql.Data.MySqlClient.MySqlException: ...
3
votes
1answer
352 views

Auto-magically add MySQL parameters in C#

At the moment, I'm creating a new method for each mysql query with parameters I want to get performed. An example: public DataTable RetreiveAllLinks(int id, int categoryid) { const string request ...
3
votes
1answer
124 views

Fluent NHibernate and friend relationship

I need to model a friend relationship with Fluent NHibernate. My company model has a List<Company> Related with related companies. Relations between companies are modeled in my database in a ...
3
votes
2answers
168 views

Adding a column value by using DataReader Problem

Using C# & MySQL When I select the combobox value, the corresponding value should display in textbox C# Code. cmd2 = new OdbcCommand("Select name from users where username='" + cmbuser.Text + ...
3
votes
4answers
142 views

Is WCF the right choice for me?

From the little that I know about WCF it seems to be the right solution to a particular problem I have but I'd like to get some input on it. Problem Description: Clients sequentially access domain ...
3
votes
4answers
449 views

Legal question about the GPL license + .NET dlls

We're considering using MySQL in a .NET project. We're aware that there's a connector available on mysql.com that's dedicated to .NET, and that it's under a GPL license. We're having trouble ...
3
votes
2answers
1k views

Memory allocation error from MySql ODBC 5.1 driver in C# application on insert statement

I have a .NET Wndows application in C#. It's a simple Windows application that is using the MySql 5.1 database community edition. I've downloaded the MySql ODBC driver and have created a dsn to my ...
3
votes
4answers
303 views

Convert date/time string value to .NET DateTime

i've this string example value: Sun, 09 May 2010 11:16:35 +0200 I've to insert it into MySql Date/Time field. How can i convert it into .NET format (or Mysql format), so i can make my INSERT INTO ...
3
votes
4answers
586 views

why does entity framework+mysql provider enumeration returns partial results with no exceptions

I'm trying to make sense of a situation I have using entity framework on .net 3.5 sp1 + MySQL 6.1.2.0 as the provider. It involves the following code: Response.Write("Products: " + plist.Count() + ...
3
votes
8answers
1k views

C# and MySQL .NET Connector - Any way of preventing SQL Injection attacks in a generic class?

My idea is to create some generic classes for Insert/Update/Select via a C# (3.5) Winforms app talking with a MySQL database via MySQL .NET Connector 6.2.2. For example: public void Insert(string ...
3
votes
1answer
519 views

MySQL Connector/NET SSL shuts down the server

when I try to connect to my server through MySQL Connector/NET using SSL with PFX certificate I have a problem with establishing the connection. I get a connection timeout. And the server probably ...
3
votes
3answers
4k views

How do I set up a connection string for a MySQL database in a C# project without using dialog boxes?

NOTE: Apparently, the reason the MySQL connector installation doesn't show up automatically in the Dialog Boxes for adding a data source is because the Visual 2008 Express Edition doesn't allow "3rd ...
3
votes
5answers
429 views

Getting “final” prepared statement from MySqlCommand

I have the following MySqlCommand: Dim cmd As New MySqlCommand cmd.CommandText = "REPLACE INTO `customer` VALUES( ?customerID, ?firstName, ?lastName)" With cmd.Parameters ...
3
votes
3answers
1k views

Repository Pattern without LINQ or other ORM?

Does it makes sense to use the Repository pattern without the use of LINQ or some other ORM? I am writing an application in MONO and using MySQL, was thinking of using the repositoy pattern but not ...
3
votes
6answers
2k views

MYSQL installation with a .NET winforms app

I have a C# application that's utilizes MYSQL. I'm at a beta release point and need an installation package that includes my application, along with MYSQL. So basically, I need to install MYSQL and ...
2
votes
2answers
39 views

last_insert_id with multiple threads

I'm writing an application in C# that basically consists of two threads. Thread 1 gets data and puts it into a database, thread 2 takes that data does some additional operations. Will I run into ...
2
votes
1answer
29 views

How can I ensure that data pulled from mysql database is recognized in Mssql and SSIS?

How can I ensure that data pulled from mysql database is recognized in Mssql and SSIS I am pulling records from Mysql database which is on Linux box and store the records on MSSQL database. When I ...
2
votes
2answers
78 views

How do I detect whether MySQL is installed?

Without the help of the registry, how do I know whether MySQL is installed or not? I am trying to determine this on a Windows machine through C#. I have found a solution that involves querying the ...
2
votes
3answers
95 views

How to insert 20 million record into MySql database as fast as possible

I have a database table like below: create table temperature (id int unsigned not null auto_increment primary key, temperature double ); And in my program I got about 20 million temperature to ...
2
votes
1answer
129 views

Strange behaviour with LINQ-to-Entities Include

I've realised that I don't fully understand the Include method in LINQ-to-Entities. For example, take the two code snippets below. I would expect them to produce the same output (though the first ...
2
votes
4answers
54 views

A way to see query after parameters are applied?

In a C# application, I'm building a query by creating a query string with parameters, then to the command adding the parameters and their values. For example: string query = "UPDATE USERS u SET ...
2
votes
5answers
187 views

Create C# classes based of MySQL table

Is there anything built into .Net or visual studio that will allow my to create classes based off of a MySql table. I guess I am talking about persistence. I just want the class to be a 1 to 1 mapping ...
2
votes
1answer
248 views

{“The directory name is invalid”} Win32Exception Was unhandled

I am trying to backup the database using mysql and c# by using following way... public static void backupDatabase() { Process sd = null; ProcessStartInfo r1 = new ...

1 2 3 4 5 10