0
votes
2answers
818 views
How do I update a change using SubSonic and MySQL
I was trying to TDD using SubSonic 2.1, MySQL and C# and when I got to testing updating an existing record using th …
2
votes
5answers
933 views
How do I connect to MySQL 5.1 in Visual Studio 2010?
Does any one know how to connect to MySQL 5.1 with …
0
votes
1answer
39 views
How do i go about matching three fields from two tables in order to update the same tables in case of match
Given two tables A and B in a MySQL Database, how can one update a field in a row of table A if and only if certain fields in the fore-mentioned row in table A exactly match fields in a distinct ro …
3
votes
How do I retrieve my MySQL username and password?
unfortunately your user password is irretrievable. it has been hashed with a one way hash which if you don't know is irreversible. i recommend go with Xenph Yan above and just create an new one. …
2
votes
Looking for MySQL IDE?
well, there are many many ides out there ranging from free to darn right take-the-shirt-off-your-back expensive. let me give you my hit list in order of preference
…
4
votes
How do I do backups in MySQL?
now i am beginning to sound like a marketeer for this product. i answered a question with it here, …
0
votes
How do I do backups in MySQL?
@Daniel,
in case you are still interested, there is a newish (new to me) solution shared by Pau …
1
vote
What’s the quickest way to dump & load a MySQL InnoDB database using mysqldump?
hi josh, i think it will be a lot faster and save you disk space if you tried database replication as oppos …
1
vote
What is some good software for designing MySQL databases?
I have used quite a number and reviewed and linked them. Now though i am a …
1
vote
How do I update a change using SubSonic and MySQL
apparently the solution was, following Robs excellent advice above, to
User u = User.FetchByID(2);
u.Ulevel = ulevel;
u.save();
i was not too sure that the snippet …
