Tagged Questions

31
votes
1answer
775 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 ...
20
votes
1answer
6k views

How to configure fluent nHibernate with MySQL

I'm trying to configure nHibernate to use a MySql database. I found examples for mssql and sqlite but none for mysql. So, how do I change this so it uses mysql: Fluently.Configure().Database( ...
17
votes
5answers
785 views

What deficiencies, limitations or flaws do you feel exist with SQL and what would you change or add to it?

Have you encountered deficiencies, limitations or flaws while using SQL? EDIT: I cannot believe that several things which are so trivial to accomplish under 3GL's like BASIC or other non-SQL data ...
10
votes
1answer
950 views

How do you use the mvc-mini-profiler with Entity Framework 4.1

I am trying to use the mvc-mini-profiler with MVC3 and keep getting the following error Unable to determine the provider name for connection of type 'MvcMiniProfiler.Data.ProfiledDbConnection' Below ...
10
votes
8answers
764 views

Database insert performance

We are planning to implement a system for logging a high frequency of market ticks into a DB for further analysis. To simply get a little what kind of storage performance we can get on the different ...
10
votes
8answers
2k views

What is the fastest way to load an XML file into MySQL using C#?

Question What is the fastest way to dump a large (> 1GB) XML file into a MySQL database? Data The data in question is the StackOverflow Creative Commons Data Dump. Purpose This will be used in an ...
10
votes
6answers
8k views

How can I use Linq with a MySql database on Mono?

There are numerous libraries providing Linq capabilities to C# code interacting with a MySql database. Which one of them is the most stable and usable on Mono? Background (mostly irrelevant): I have ...
9
votes
2answers
772 views

Lexing partial SQL in C#

I'd need to parse partial SQL queries (it's for a SQL injection auditing tool). For example '1' AND 1=1-- Should break down into tokens like [0] => [SQL_STRING, '1'] [1] => [SQL_AND] [2] ...
9
votes
4answers
446 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 ...
9
votes
2answers
2k views

How mature is dblinq?

Im working on an application that needs to talk to a database. The application is written in C#. Im quite taken by LINQ and auto generating classes to represent the database and its tables, so first I ...
8
votes
2answers
284 views

Network connections only work if device connected via cable

Ok, I tried for the last couple hours and I give up: I develop for a mobile device (Win CE on Unitech HT660) and have a weird thing occurring: I try to communicate with a service on my PC and I'm ...
7
votes
3answers
249 views

MySql statement prepare “not sticking”

I'm attempting to use a prepared statement, and while the MySqlCommand executes just fine, the execution time is abysmal. I had it write the result of cmd.IsPrepared to the console, and sure enough, ...
7
votes
2answers
261 views

How to throw SQLException in stored procedure

How can I throw exception in a stored procedure For example: @temp int =0 As BEGIN SELECT @int = COUNT(*) FROM TABLE1 END IF(@temp>0) throw SQL Exception P/S: not use return value
7
votes
5answers
679 views

c# checking for null problems

I have some null values in the db which throws some errors, so I decided to set it to something if it was null and move on. Checking for null doesn't appear to do anything. if ...
7
votes
2answers
1k views

MySQL Split to use in “SELECT WHERE IN” statement

I've been scouring various MySQL sites in the hope of finding something that will allow me to turn this: var parameters = "a,b,c,d"; // (Could be any number of comma-delimited values) Into this ...
7
votes
3answers
565 views

C# mysql connection practices

If a C# application connects to a mysql server from a client, how do I store the mysql username/password for the connection? If I have it in a config file or embedded in the source it can be found by ...
7
votes
5answers
6k views

Does Visual Studio Server Explorer support custom database providers?

I had used Server Explorer and related tools for graphical database development with Microsoft SQL Server in some of my learning projects - and it was a great experience. However, in my work I deal ...
6
votes
3answers
140 views

Does Dapper work on Mono?

We're thinking about moving over to Mono and I see that Dapper works with MySql. However this is with a ADO.NET provider. Does Mono/Linux have a MySql ADO.NET provider and does that work with Dapper? ...
6
votes
1answer
462 views

Fastest way to read data from MySQL using C#

I'm wondering if there is a faster method than using something like: while (Reader.Read()) to read the results of mysql select queries. I'm randomly pulling 10,000 rows from a database and would ...
6
votes
2answers
4k views

where can I find mysql.data.dll for c#

All I keep on finding are source files for compiling the project myself (which keeps on failing). Any ideas please? Thank You!
6
votes
9answers
649 views

Keeping an application database agnostic (ADO.NET vs encapsulating DB logic)

We are making a fairly serious application that needs to remain agnostic to the DB a client wants to use. Initially we plan on supporting MySQL, Oracle & SQL Server. The tables & views are ...
6
votes
1answer
625 views

C# Entity FrameWork MySQL Slow Queries Count()

I'm having a serious issue with MySQL and Entity Framework 4.0. I have dropped a Table onto the EF Designer surface, and everything seems OK. However, when I perform a query in the following ...
6
votes
3answers
839 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
4answers
498 views

optional search parameters in sql query and rows with null values

Ok here is my problem : Before i start the description, let me to tell you that I have googled up a lot and I am posting this question for a good optimal solution :) i am building a rest service on ...
5
votes
2answers
105 views

C# MySQL connection pool limits, and cleaning up connections

I have a simple DB manager class (a grander name than it's abilities deserve): class DbManager { private MySqlConnectionStringBuilder _connectionString; public DbManager() { ...
5
votes
1answer
405 views

Scrabble word finder: building a trie, storing a trie, using a trie?

What I’m trying to do: Build a mobile web application where the user can get help finding words to play when playing scrabble Users get word suggestions by typing in any amount of letters and 0 or ...
5
votes
5answers
438 views

How can I count the number of rows returned by a MySQL Query?

Is there an easier way of doing this besides loading the data into a DataTable and using Rows.Count or using a MySqlDataReader and iterating through all the resulted rows?
5
votes
3answers
5k views

Index (zero based) must be greater than or equal to zero

Hey I keep getting an error: Index (zero based) must be greater than or equal to zero and less than the size of the argument list. My code: OdbcCommand cmd = new OdbcCommand("SELECT ...
5
votes
3answers
515 views

Why not DbConnection instead of SqlConnection or OracleConnection?

I'm a Java retread pretty new to C#. I'm hoping to stay out of trouble when I crank out a bunch of DML code in the next few weeks. I'm used to the idea of using JDBC's abstract classes like ...
5
votes
6answers
492 views

image in database

Is it possible to store an Image file (.jpg, .gif, etc) in MYSQL database? Or do it just stores in system and takes reference path of image? I am using ASP.NET C#, so if you have sample code, it ...
5
votes
2answers
640 views

Deploy MySQL server with VisualStudio 2005 application

I have a Visual Studio 2005 project (C#) that uses MySQL as a data storage engine, i would like to create a MSI package that install the app, and after install MySQL silently. I have been looking into ...
5
votes
3answers
129 views

sql query error

i have a SQL query as follows String S = Editor1.Content.ToString(); Response.Write(S); string sql = "insert into testcase.ishan(nmae,orders) VALUES ('9',@S)"; OdbcCommand cmd = new ...
5
votes
4answers
340 views

Difference in SHA1 in .NET and MySQL

I have a couple different bits of code but the short story is I insert some passwords into a MySQL database using SHA1 and also compute SHA1 hashes into .NET and they are not matching. I think this is ...
5
votes
4answers
335 views

Is there a way to search SQL database for similar words (mean not identical words)?

Is there a way to search MySQL database for similar words (mean not identical words) . For example : user searches in database for word "abcd" and there is a word "abd" in the database so the search ...
5
votes
2answers
155 views

What is the best way to develop a C# project with a MySQL backend?

So I'm using C# 2010 Express and wondering what the best toolset is for developing a C# project with a MySQL backend? I know what if you use SQL Server Compact edition from within C# it will let you ...
5
votes
9answers
1k views

MySqlDataReader stops reading after about 4 minutes and returns

I have a simple query which returns 25,026 rows: MySqlCommand cmd = new MySqlCommand("SELECT ID FROM People", DB); MySqlDataReader reader = cmd.ExecuteReader(); (ID is an int.) If I just do this: ...
5
votes
3answers
181 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
3answers
844 views

Check if a table exists, and if not, create it

I'm using a Odbc connection to a mysql server, and was wondering how I would go about checking if a table exists within my database, and if not, create it.
5
votes
11answers
3k views

MySql connection, can I leave it open?

Is it smart to keep the connection open throughout the entire session? I made a C# application that connects to a MySql database, the program both reads and writes to it and the application has to be ...
5
votes
3answers
1k views

How to decode a string that has been UTF-8 encoded twice to simple UTF-8?

I have a huge MySQL table which has its rows encoded in UTF-8 twice. For example "Újratárgyalja" is stored as "Újratárgyalja". The MySQL .Net connector downloads them this way. I tried lots of ...
5
votes
5answers
2k views

How can I connect to MySQL from windows forms?

How can I connect to mysql data base from windows forms?
5
votes
4answers
4k views

MySQL C# Text Encoding Problems

I have an old MySQL database with encoding set to UTF-8. I am using Ado.Net Entity framework to connect to it. The string that I retrieve from it have strange characters when ë like characters are ...
4
votes
1answer
122 views

How can I join a MS-SQL and MySQL table in a query?

I want to do a join accross a MS-SQL and MySql database. The MS-SQL query generates an index, effectively, and then I want to pull all MySQL records back that match the result of this query. (I could ...
4
votes
3answers
128 views

Is the database connection in this class “reusable”?

I'm new to asp.net so this might be really basic question, but i cant figure it out. I found a bit of code on the internet, that connects to database. And i created a namespace and some classes to ...
4
votes
2answers
116 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
2answers
181 views

Deploying ASP.NET Website on Linux Server

Is it possible to develop a website in ASP.NET with C# as the coding Language and MySQL as the database and then deploy the same on Linux server? I am talking about a full frontal website like forums ...
4
votes
7answers
190 views

Speeding up records filtering as and when user types

My application is in C# [.NET 3.5] and MySQL 5.1 back-end. I have a Windows Form with a TextBox and a DataGridView. When the user types in few characters in the TextBox, an SQL Query with a Like ...
4
votes
1answer
791 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
252 views

NHibernate / MySQL string concatenation

I have a nhibernate linq query that looks like this: from b in session.Query<Bookmark>() where b.Uri.Equals(uri) || b.Uri.Equals("www." + uri) || string.Concat("www.", b.Uri).Equals(uri) ...
4
votes
1answer
359 views

How can I force a log out of all users for a website?

I'm using MySQL Connector/.NET, all its providers with FormsAuthentication. I need all users to log out at some moment. The method FormsAuthentication.SignOut() does not work like I want. How can I ...

1 2 3 4 5 28