Blogs
Username: guest, 15/04/2009 08:18:00
Tau Elastica Database Integration:
If you would want to use a database to store your Steel Properties in your DB, then run this SQL Script against your DB (SQL Server):
CREATE TABLE [dbo].[Properties](
[propertyNumber] [numeric](10, 0) IDENTITY(1,1) NOT NULL,
[crossArea] [numeric](10, 3) NULL,
[yieldStress] [numeric](10, 3) NULL,
[plasticMod] [numeric](10, 3) NULL,
[youngsMod] [numeric](10, 3) NULL,
[secondMomArea] [numeric](10, 3) NULL,
CONSTRAINT [PK__Properties__07020F21] PRIMARY KEY (propertyNumber)
);
Also note that there is a sql script that comes with the application on download that needs to be run. This script will help you set up your database when run against your database.
If you would want to use a database to store your Steel Properties in your DB, then run this SQL Script against your DB (SQL Server):
CREATE TABLE [dbo].[Properties](
[propertyNumber] [numeric](10, 0) IDENTITY(1,1) NOT NULL,
[crossArea] [numeric](10, 3) NULL,
[yieldStress] [numeric](10, 3) NULL,
[plasticMod] [numeric](10, 3) NULL,
[youngsMod] [numeric](10, 3) NULL,
[secondMomArea] [numeric](10, 3) NULL,
CONSTRAINT [PK__Properties__07020F21] PRIMARY KEY (propertyNumber)
);
Also note that there is a sql script that comes with the application on download that needs to be run. This script will help you set up your database when run against your database.
Username: guest, 13/02/2009 05:30:00
Dear Clients,
I have looked at the file extension problem which indeed would become a major headache.
My implementation suggests that a folder should either have a file with an extension or it should have a name greater than three charachters long.
This is no bug, but if it is reported again, then I will address it. It is the implementation that I used to address files without extensions. Remember, in order to open a file after decrypting, it should be noted what file extension it has; that way it is associated with a Program that opens it.
Like I said this statement is important for the Cryptosystem processing.
Hope that helps.
Martin Okello
Aka The Medallion
I have looked at the file extension problem which indeed would become a major headache.
My implementation suggests that a folder should either have a file with an extension or it should have a name greater than three charachters long.
This is no bug, but if it is reported again, then I will address it. It is the implementation that I used to address files without extensions. Remember, in order to open a file after decrypting, it should be noted what file extension it has; that way it is associated with a Program that opens it.
Like I said this statement is important for the Cryptosystem processing.
Hope that helps.
Martin Okello
Aka The Medallion
Username: guest, 27/01/2009 07:39:00
EpsilonVPN Solution Patch:
It was noted that File transfers of huge size failed in EpsilonVPN Client transfers.
This has been investigated, and due to the nature of Sockets Programming, Asynchronous Communication and Multi-Threading, the bug appeared to persist.
Finally, the Medallion's drawn experience and talent showed through, disbanding the problem as non-existent by means of a patch and debug exercise.
Regards
EpsilonVPN Solution Team.
It was noted that File transfers of huge size failed in EpsilonVPN Client transfers.
This has been investigated, and due to the nature of Sockets Programming, Asynchronous Communication and Multi-Threading, the bug appeared to persist.
Finally, the Medallion's drawn experience and talent showed through, disbanding the problem as non-existent by means of a patch and debug exercise.
Regards
EpsilonVPN Solution Team.