BIOCROSS PUBLIC BETA!!!
-
Serious bug which may make Biocross unable to even get passed the splash screen (good start right guys :P)
install patch 1017: http://eredivine.net/biosoft/biocross/1017/Update.exe (6MB)
REQUIRES ADMIN PRIVELEDGES
ADDITIONAL: Forgot to mention I added FLStat from this patch onwards
-
Missing files may cause SQL issues when testing for a connection
Patch 1018: http://eredivine.net/biosoft/biocross/1018/Update.exe
NOTE: You DO NOT have install patch 1017 to install 1018!
REQUIRES ADMIN PRIVELEDGES
-
1st… yay… hia m8
2nd… error404 on that last patch link m8… EDIT: fixed now
3rd… is this the same prob we has the other night? what the patch fixes?
4th… yep… she’s a gonner… another PC deep fried and i build me mod on her too… a sad daynow on with the show!! ;D
-
Hey Xarian thanks for checking it out, I fixed our little Vista issue turned out to be my fault
download the Setup and then download the 1018 patch (1017 is not necessary to download 1018 builds on top of 1017)
sorry to here about your XP machine I know you and her go way back
let me know if these patches are working out for you
-
PATCH 1019: http://eredivine.net/biosoft/biocross/1019/Update.exe
Fixes some issues between SQL Server 05 and 08 - again if you have just downloaded the main setup skip patches 1017 and 1018 and come straight to this one…
THIS PATCH IS REQUIRED TO MAKE BIOCROSS WORK WITH SQL EXPRESS 2005!
-
ok i cant use your program because my sql server gets stuck in the middle of the install
I would honestly love to help you, but because that’s a Microsoft Product I really have no idea what is going on, unless your on Vista or Win7 then make sure your running as administrator.
Perhaps a screen on where it is getting stuck and your system Specs and we can get to the bottom of this
-
I am now going to start posting updates and things at my FL-Forge page - please head over there for future patches, let’s keep this stuff off the forums…
-
Microsoft are known for resource hungry installers - perhaps it is worth leaving it on in the background while doing other things for as long as possible I would say after about 10 - 20 minutes you can safely say the installer is broken…
At which point does it freeze/take forever?
-
Honestly, thats the reason I was asking why you did not use a different database. I know their database installation very often takes a ridiculous amount of time (had it on several machines) and it takes up way to much disk space considering the purpose of the whole thing. I don’t how much special features you use, but I never had much trouble switching between databases, since the common used methods are present in the most sql databases and the syntax is mostly even the same.
-
Installation of the most basic SQL Express edition is extremely quick even on my laptop and is only 40-60MB depending on additional features…
It works fine when it is just the SQL Service active, there is no need for management studio or any other advanced tools… I have never had a bad experience with SQL Server 2005
2008 on the other hand is a different story…
A few of my stored procedures use SQL Statements which are only present in Microsoft’s SQL Server unfortunately, the class I wrote into BioHelper.dll also only works for Microsoft’s SQL Servers… It’s a really difficult change at this late a point, Biocross however was designed generally for mid performance machines and was tested mainly in a Server environment…
Perhaps later on after final release I will write a low performance version of Biocross which will use SQLLite - until then I am sorry to all those with older machines
-
my problem was i had register at the site first http://www.microsoft.com/Sqlserver/2005/en/us/express-down.aspx
-
Just for fun I did a test on an old root server (celeron 1,2ghz, 256 mb ram). SQL 2005 Express took about 10 Minutes to install, not bad (I’ve had over 30 minutes on some machines not that old, different sql server versions). The Problem was the .net stuff, which took about an hour. After the installation it used something more than 200mb on harddisk + nearly 200mb for .net 2.0.
Out of curiosity I downloaded Mysql 5.1 essentials, it took about 2 Minutes to install and consumed about 100 MB of disk space.
Maybe you really should consider using sqlite (or mysql) for older servers, the .net stuff seems to kill the fun (even on newer machines it takes ages to install it, have done it multiple times).
-
Even if I use SQLite I would still need the .NET Framework - also Biocross is now configured to run on the .NET Framework 2.0 which comes shipped with XP and Server 2003 so really there is no need to download it at all (you must choose to install it off your XP CD still though as it is optional).
I just tried one line of my SQL Statements against a SQLite database and it turns out I can’t use IF statements in SQLite either which is extremely limiting.
-
Gonna have to do like everyone and rely on your C#/VB code to do the logic and only use SQL for data management ;D
-
Really the only reason I use IF statements is to check for duplicates and also to check if the table is already created when patching as to not overwrite existing data but both are important checks…
I guess Biocross may not be considered a replacement for Ioncross then, only an alternative maybe it will be better to class Biocross as a tool for larger servers with a big player base, and little servers may benefit more from using Ioncross…
Either that or I spend another year coding Biocross-Lite
-
I am a little bit confused, why sqlite would not support IF statements (http://www.sqlite.org/lang_expr.html looks pretty good, even regexp is supported, which I normally use for such stuff) and the list of unsupported features http://www.sqlite.org/omitted.html does not mention in. Anyway, it’s your project, your time and thus your decisions