Hey guys, I’m very interested in getting the database file separately as my first step in converting this project for our .NET environment. I’d like to convert the HIPAA compliant tables to SQL Server and then get cracking on the code. Is there a way to get the database file by itself?
I’d suggest "extending" rather than "converting" the database interface. I.e. abstract the database layer so it is not specific to MySQL, but still works with it as well as your preferred server and potentially other SQL servers in the future. That way the project will want to include your work and not leave you out in the cold.
This is a nontrivial task, but would be a very nice improvement.
I’ve got the SQL file, now the trick is getting that script to work for SQL Server 2008. Is there a better way then manually going through each create table and rewriting the script.
sheesh, I’m new to mysql, i’m using the standard client. It looks like the client removes whitespace so all the comment lines from the database.sql file get mashed into the statements. Going through each statement one by one and copying/pasting into the client. What a pain.
OK I downloaded the mysql gui and used the adminstrator to "restore" the sql db, now I’ll just convert the db over to sql server. Sorry for this thread being so annoying
In case you want to support language translations:
The database.sql file contains everything but the language translation tables (three tables); they are empty dummy tables in database.sql. The sql file that contains the filled language translation tables (these are brought in during the installation setup.php script) can be found here:
Yes that’s correct. No stored procedures. Even most foreign key relationships are enforced only on the PHP side, which is an area that could really use improvement.