This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
I am trying out lightspeed. I have a very simple setup: A customer table, associated with it is an address table. I am connecting to mysql5 running on a (remote) linux box.
When I try to save a record, I get an exception from mysql:
MySql.Data.MySqlClient.MySqlException: Table 'srram_blueterms.billaddress' doesn't exist
(stack trace below for futher reference).
I had this code working fine with postgres on my local machine. (unfortunately, my web hosting company does not support postgres)
Thanks for your help Siddharth My Appconfig:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="lightSpeedContexts" type="Mindscape.LightSpeed.Configuration.LightSpeedConfigurationSection, Mindscape.LightSpeed" />
</configSections>
<lightSpeedContexts>
<add name="Development" connectionStringName="Development" dataProvider="MySql5" pluralizeTableNames="False"/> </lightSpeedContexts>
<connectionStrings><add name="Development" connectionString="Server=xx;Port=xx;Database=xx;User Id=xx;Password=xx"/>
</connectionStrings>
</configuration>
|
|