-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Can't generate schema.
PostPosted: Fri Jul 16, 2010 3:44 am 
Newbie

Joined: Sun Jul 11, 2010 5:08 pm
Posts: 4
Hello. I am connecting to MySQL and I have nice config files but it seems like i can't generate schema. I do those things in order:

Code:
config = new Configuration();
            config.Configure();
            config.AddAssembly("HelloWorld");

            //Budujemy fabryke
            factory = config.BuildSessionFactory();

            //Budujemy sesje
            session = factory.OpenSession();

var export = new SchemaExport(config);
            var sb = new StringBuilder();
            TextWriter output = new StringWriter(sb);
            //String output;
            export.Execute(true, false, false, null, output);
            System.Console.WriteLine(output.ToString());


I got no error but nothing is printed on screen :/ String is empty

those are my configs and simple class Product from tutorial. I am using only namespace "HelloWorld" could that be a problem? Couse i see that everyone is using Domain.

Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.0">
  <!--
  <session-factory>-->
    <session-factory xmlns='urn:nhibernate-configuration-2.2'>
    <property name="dialect">NHibernate.Dialect.MySQLDialect</property>
      <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
        <property name="connection.driver_class">NHibernate.Driver.MySqlDataDriver</property>
          <property name="connection.connection_string">Server=localhost;Database=hello;User ID=root;Password=</property>
      <property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
      <property name="show_sql">true</property>
    </session-factory>
</hibernate-configuration>


Code:
using System;
using System.Collections.Generic;
using System.Text;

namespace HelloWorld
{
    public class Product
    {
        public Guid Id { get; set; }
        public string Name { get; set; }
        public string Category { get; set; }
        public bool Discontinued { get; set; }
    }
}


Code:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
                   assembly="HelloWorld"
                   namespace="HelloWorld">

  <class name="Product">
    <id name="Id">
      <generator class="guid" />
    </id>
    <property name="Name" />
    <property name="Category" />
    <property name="Discontinued" />
  </class>

</hibernate-mapping>


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.