Fórumok

How to use existing tables of a database in liferay 6.1

sudhansu rana, módosítva 11 év-val korábban

How to use existing tables of a database in liferay 6.1

New Member Bejegyzések: 8 Csatlakozás dátuma: 2012.08.21. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Expert Bejegyzések: 483 Csatlakozás dátuma: 2010.07.31. Legújabb bejegyzések
http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Connecting+to+Separate+Database+Using+Build-service+in+Plugins+SDK
sudhansu rana, módosítva 11 év-val korábban

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

New Member Bejegyzések: 8 Csatlakozás dátuma: 2012.08.21. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Expert Bejegyzések: 483 Csatlakozás dátuma: 2010.07.31. Legújabb bejegyzések
http://liferayazam.wordpress.com/2011/05/30/connect-to-different-database-through-service-xml-liferay6/
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

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

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Regular Member Bejegyzések: 177 Csatlakozás dátuma: 2012.06.22. Legújabb bejegyzések
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, módosítva 11 év-val korábban

RE: How to use existing tables of a database in liferay 6.1 (Válasz)

New Member Bejegyzések: 8 Csatlakozás dátuma: 2012.08.21. Legújabb bejegyzések
Thanks friends.
I could connect to different DB from portlet.