掲示板

How to use existing tables of a database in liferay 6.1

11年前 に sudhansu rana によって更新されました。

How to use existing tables of a database in liferay 6.1

New Member 投稿: 8 参加年月日: 12/08/21 最新の投稿
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
11年前 に Harish Kumar によって更新されました。

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

Expert 投稿: 483 参加年月日: 10/07/31 最新の投稿
http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Connecting+to+Separate+Database+Using+Build-service+in+Plugins+SDK
11年前 に sudhansu rana によって更新されました。

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

New Member 投稿: 8 参加年月日: 12/08/21 最新の投稿
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
11年前 に Harish Kumar によって更新されました。

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

Expert 投稿: 483 参加年月日: 10/07/31 最新の投稿
http://liferayazam.wordpress.com/2011/05/30/connect-to-different-database-through-service-xml-liferay6/
thumbnail
11年前 に Jignesh Vachhani によって更新されました。

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

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
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
11年前 に Nikhil Nishchal によって更新されました。

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

Regular Member 投稿: 174 参加年月日: 12/06/22 最新の投稿
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.
11年前 に sudhansu rana によって更新されました。

RE: How to use existing tables of a database in liferay 6.1 (回答)

New Member 投稿: 8 参加年月日: 12/08/21 最新の投稿
Thanks friends.
I could connect to different DB from portlet.