7
votes
2answers
571 views
PHP Script to populate MySQL tables
Is anyone aware of a script/class (preferably in PHP) that would parse a given MySQL table's structure and then fill it with x number of rows of random test data based on the field types? I have ne …
1
vote
PHP Script to populate MySQL tables
@Jarod Elliott:
Worked great for what I needed. Only
100 rows can be generated for free,
but you can also download and install
locally and generate whatever amount
y …
-3
votes
Best way to stop SQL Injection in PHP
I would say something like this in addition to mysql_real_escape_string():
<?php
// Quote variable to make safe
function quote_smart($value)
{
// Stripslashes
if (get_mag …
0
votes
One big SQL Select statement or several small ones (Performance)?
Be careful when dealing with a merge table however. It has been my experience that although a single join can be good in most situations, when merge tables are involved you can run into strange sit …
0
votes
MySQL - Find rows matching all rows from joined table
Would probably be faster if you broke this up into two queries. First, a join of the words and trackwords to net you all the trackids you need. Then go back to the track table and do:
…
2
votes
0
votes
lastInsertId from a bulk insert?
If you used a datetime instead of just a date you could lookup the inserted id based on the user and the datetime values, but it is probably better so just not do a bulk insert if you need that dat …
