MySQL is an open-source, relational database management system.

learn more… | top users | synonyms (3) | mysql jobs

1
vote
2answers
88 views
+50

What field type to store the facebook stream tags?

I have created a simple facebook app and I want to store the facebook stream tags in my mysql database with stream infomation. What field type do I have to use to store the facebook stream tags? ...
0
votes
1answer
97 views
+50

mysqlnd: Cannot connect to MySQL 5.5.24, old_passwords is Off

I have two enviroments: Dev: Windows 7, PHP 5.3.24, Apache 2.2.24 Production: Linux, PHP 5.4.10, Apache Both connects to a remote MySQL 5.5.24 Server. Remote connections are allowed. I replaced ...
0
votes
2answers
52 views
+100

Tagging query with group_concat

Using the database schema for tagging from this question's accepted answer is it possible to have a query using group_concat that works with a large amount of data? I need to get items with their tags ...
0
votes
2answers
88 views
+50

initialise all values in a query to 0 and top to NULL if there's no result

Hi all i execute this query to get a table where there's statistics of some database information.. i'd like to intialise the fields that don't exist ( because the query is executed in different dates ...
1
vote
1answer
58 views
+50

Membership.Provider for mysql in asp.net issue

Using MVC4 synced to a mysql server. Did it successfully by changing the machine.config and successfully used the ASP.net Configuration Tool to create users. However when I log in with a username ...
0
votes
1answer
37 views
+50

MySQL Database Schema for role based system

We are developing a platform for NGOs (N) to get their work done via Individual Volunteers (V) or Volunteers via a Company (C) NGO An NGO can come signup for an account and create a profile. It ...
0
votes
2answers
43 views
+50

MySQl Configuration Error After reinstall it

When I reinstall MySQL database after uninstall it, I got this error when configuration: Error 1045 Now, My new directory is here: E:\Program Files (x86)\MySQL\MySQL Server 5.5 and my old ...
2
votes
2answers
38 views
+50

Handling Deletes/Inserts/Select in a huge table

I have a dating website In this website i used to send daily 10 photo matches to a user and store them in the structure as SENDER RECEIVER 11 1 12 1 13 1 14 1 I maintain two ...