everything works now... I had to recreate all the tables, probably there was a problem with the prefix of the table... I had to replace "#_", not only "#" with my table prefix
CREATE TABLE IF NOT EXISTS `#__hikashop_address` (
`address_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`address_user_id` int(10) unsigned NOT NULL DEFAULT '0',
to
CREATE TABLE IF NOT EXISTS `szbg5_hikashop_address` (
`address_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`address_user_id` int(10) unsigned NOT NULL DEFAULT '0',
Thanks!