Link to home
Start Free TrialLog in
Avatar of Fionageo80
Fionageo80

asked on

How to execute SQL statements from txt file using Hibernate

Hello,

I have a program, the user load a txt file that contain a list of SQL statements. I would like to know how can execute these SQL statements using Hibernate taking as a starting point that the user will load a list of Conventional SQL statements.

How can I do that?

Thank you for help.
Avatar of ozlevanon
ozlevanon

There is some information missing - which way do the commands appear in the file? Should something be done with their result? etc.
The following code is assuming there is one SQL command per line (i.e. there is a newline character between each command) and that these are not query statement for which the program should analyze the result.

Note that in this example the session is closed after all the commands, but you can close it and open a new one after each command.
			SessionFactory sessionFactory = null; // init this the way you usually do.
			FileReader fr = new FileReader(args[0]);
			BufferedReader br = new BufferedReader(fr);
			Session session = sessionFactory.getCurrentSession();
			session.beginTransaction();
			while (true)
			{
				String sql = br.readLine();
				if (sql == null)
				{
					break;
				}
				try
				{
					int result = session.createSQLQuery(sql).executeUpdate();
					System.out.printf("Got result %d from '%s'\n", result, sql);
				}
				catch (Exception e)
				{
					System.err.printf("Error executing '%s'\n", sql);
				}
			}
			session.getTransaction().commit();
			fr.close();

Open in new window

Avatar of Fionageo80

ASKER

Thank you for your quick reply.

Actually I have to use Hibernate.
The SQL statements are listed as you can see below, one statement after the other.

I have a EntityBean.java  that gets the EntityManager.

**** I want to know if I can execute directly these statements using entityManager.createNativeQuery? or createQuery? *****

Yes, I have to post process the result of those queries.

Thank you!


select * from user a where status= 1 and not exists(select * from detail where id= a.id)
select * from user a where status <> 1 and exists(select * from detail where id= a.id)

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of ozlevanon
ozlevanon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial