Search Results

1
vote

Mechanisms for tracking DB schema changes

K. Scott Allen has a decent article or two on schema versioning, which uses the incremental update scripts/migrations concept referenced in other answers here; see …
-3
votes

What is the best way to pick a random row from a table in MySQL?

Add a column containing a calculated random value to each row, and use that in the ordering clause, limiting to one result upon selection. This works out faster than having the table scan that …
1
vote

How do I write a mysql query that will read data from one table and write to another?

INSERT...SELECT is the answer; see http://dev.mysql.com/doc/refman/5.1/en/insert-select.html. …
3
votes

Is ENCODE() and DECODE() the “best” way to handle an application password field in MySQL?

Well, since there's a DECODE() function, I'd say no, for the simple fact that you probably want to store the password in hashed form, to prevent anyone obtaining your database/password …
1
vote

PHP mySQL - When is the best time to disconnect from the database?

Using a lazy connection is probably a good idea, since you may not need the database connection at all for some script executions. On the other hand, once it's open, leave it open, and eith …
1
vote

Best way to stop SQL Injection in PHP

Whatever you do end up using, make sure that you check your input hasn't already been mangled by magic_quotes or some other well-meaning rubbish, and if necessary, run it through …
7
votes

Select all but the first character in a string

Use SUBSTR (or SUBSTRING): SELECT SUBSTR( 'hello' …
0
votes

Popularity Algorithm

I've no useful ideas as far as the actual agorithm is concerned, but in terms of implementation, I'd suggest caching the result somewhere, with a periodic update - if the resulting computation resu …
7
votes

I need to change the date format using php.

First things first echo "<td><strong> ("d/m/y",". $row['date'] .")</strong></td>"; This line looks wrong; I suspect it ought to read some …
0
votes

Listing of All Mysql Data Types and Syntax For All Settings

For completeness' sake, don't forget the MySQL documentation. Although the list is broken across multiple …
4
votes

Convert plain text input to HTML

You could implement some very simple wiki-like markup, although "simple" here could vary; consider using something like Markdow …
1
vote

Better PHP,MySql,HTML and JavaScript IDE

NetBeans has decent support for PHP, HTML, JavaScript and so on, including decent debugger support for PHP. It might be worth a gander. …
2
votes

Singular or plural database table names ?

Well, obviously your database table names have absolutely got to be named in a "standard" fashion which I will hitherto arbitrarily define. First, all tables names shall be …
3
votes

Can I SSH to MySQL with the GUI tools?

Set up a tunnel using the SSH client to map a local port, through the tunnel, to a port on the remote machine, then connect to the local port using the client. man ssh will hav …
1
vote

Converting mySQL’s KEY to PgSQL?

KEY is an index, if that's the exact syntax you're porting. …

1 2 next
15 30 50 per page