0
votes
Composite primary keys versus unique object ID field
Composite keys can be good - they may affect performance - but they are not the only answer, in much the same way that a unique (surrogate) key isn't the only answer.
What concerns me is th …
1
vote
What is the ideal data type to use when storing latitude / longitudes in a MySQL database?
When I did this for a navigation database built from ARINC424 I did a fair amount of testing and looking back at the code, I used a DECIMAL(18,12) (Actually a NUMERIC(18,12) because it was firebird …
1
vote
@@IDENTITY after INSERT statement always returns 0
I think you need to have the Select @@identity with the first create command - try appending it via ";SELECT @@Identity" and .ExecuteScalar the insert statement
…
1
vote
What is the best method for getting a database connection/object into a function in PHP?
My advice is to avoid global in the bulk of the code - it's dangerous, hard to track and will bite you.
The way that I'd do this is to have a function called getDB() which can either be at …
0
votes
PHP and outputting one-to-many results
use an array keyed on the id and url iterate through the values and add to it as follows:
$link_categories[ $id ] .= $category." ";
$result = mysql_query("SElECT * FROM LINKS");
$ …
