Forums de discussion

How to use existing tables of a database in liferay 6.1

sudhansu rana, modifié il y a 11 années.

How to use existing tables of a database in liferay 6.1

New Member Publications: 8 Date d'inscription: 21/08/12 Publications récentes
Hi,
I am new to liferay.
I have an existing database and some table names which are fixed and cannot be changed.
They don't follow any Namespace so i cannot use service builder.(like abc and not with namespace PR pr_abc)

Please advice how to use them either in service builder or spring+hibernate.

Thanks
Sudhansu
thumbnail
Harish Kumar, modifié il y a 11 années.

RE: How to use existing tables of a database in liferay 6.1

Expert Publications: 483 Date d'inscription: 31/07/10 Publications récentes
http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Connecting+to+Separate+Database+Using+Build-service+in+Plugins+SDK
sudhansu rana, modifié il y a 11 années.

RE: How to use existing tables of a database in liferay 6.1

New Member Publications: 8 Date d'inscription: 21/08/12 Publications récentes
Harish Kumar:
http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Connecting+to+Separate+Database+Using+Build-service+in+Plugins+SDK



Hi Harish,

The sample seems to made in liferay 5.2.

Is there any sample for liferay 6.1.

Could you please guide me on this?
thumbnail
Harish Kumar, modifié il y a 11 années.

RE: How to use existing tables of a database in liferay 6.1

Expert Publications: 483 Date d'inscription: 31/07/10 Publications récentes
http://liferayazam.wordpress.com/2011/05/30/connect-to-different-database-through-service-xml-liferay6/
thumbnail
Jignesh Vachhani, modifié il y a 11 années.

RE: How to use existing tables of a database in liferay 6.1

Liferay Master Publications: 803 Date d'inscription: 10/03/08 Publications récentes
Hi Sudhansu,
If its compolsary to use separate database then you can follow the link send by Haris.
Otherwise if table value is fixed and won't change anymore, then you can copy those tables in liferay DB and then try with my below approach.

I didn't try with table but i tried with view.
In that i created sql view and then i created service with the same name of view and access the data from that view using service builder only.
But here you need to make sure that entity name should be same as view or table name.
Please try and put your feedback here.
thumbnail
Nikhil Nishchal, modifié il y a 11 années.

RE: How to use existing tables of a database in liferay 6.1

Regular Member Publications: 177 Date d'inscription: 22/06/12 Publications récentes
Hello sudhansu rana,
For Connecting to a Database with Plugins SDK you can use above link given by Harish.
However,
If you existing table is going to use only once while importing data to liferay.
then you can do these steps:
make a portlet in liferay.
in this portlet read data from existing table using JDBC.
And, then using liferayservice add them to liferay as per requirement.
sudhansu rana, modifié il y a 11 années.

RE: How to use existing tables of a database in liferay 6.1 (Réponse)

New Member Publications: 8 Date d'inscription: 21/08/12 Publications récentes
Thanks friends.
I could connect to different DB from portlet.