Posts Tagged ‘development’

Available for iPhone Development

April 28th, 2009

Just to put it out there: I’m available for iPhone development (preferably in the Netherlands).

If you’re interested in having an iPhone app developed, feel free to contact me to discuss your options.

I’m developing iPhone apps a an employee at Kabisa.

MySQL: (Re)set the auto-increment value of a table

November 30th, 2007

Sometimes it’s necessary to set the starting point of a MySQL auto-increment value.

Normally, MySQL starts auto-incrementing at 1. But let’s say you want to start at 10.000, because you want at least a five figure number. You can use the following query to set the MySQL auto-index:

ALTER TABLE some_table AUTO_INCREMENT=10000