Archive

Posts Tagged ‘java-mysql’

mysql_insert_id Get Lasted PK when auto increment

June 13th, 2011
Comments Off

Content about:Function mysql_insert_id
Advertisements


When you save data whit PK is auto increment you can get last pk whit this function

mysql_insert_id()

if you use Codeigniter you can use this function

$this->db->insert_id();

But in Java you need to select form sql command like
select mysql_insert_id() from mytable

Development , , ,