The beginning of the wildfish framework
1. What is the wildfish framework?
This is a simplified data access framework based on. net2.0. It supports MSSQLServer <complete test passed>/Oracle <not complete test>/iseries database <not complete test>.
Of course, I do not want to say that my framework is omnipotent. The selected database drivers support @ or: To represent parameters.
Currently, only sqlserver'sCodeBecause of the lack of Oracle testing environment, Oracle has not started writing.
Iseries code generators are available in companies, but they are not suitable for general purposes. At present, there is no motivation to write iseries code generators.
2. Advantages of the wildfish framework
With this framework, you will no longer have a headache in writing a wide range of insert, update, and delete statements, and will no longer be upset about applications between multiple databases.
Provides some common class libraries, such as some EDI class libraries, cache class libraries, tool class libraries, and common page base classes.
3. disadvantages of the wildfish framework
Because the insert/update/delete statements are not stored in the stored procedure, the performance is lower than that of the stored procedure.
Given the app's portability, the Framework's data accessors seldom consider calling stored procedures.
For cross-application consideration, too many database dialects cannot be used. Otherwise, switching will be a headache.
Because many data types have never been used in the developed applications, such as binary, are not considered, but it is sufficient for general systems.
Also, the auto-growth type is not supported, because the implementation in Oracle iseries is troublesome, so the primarykey or GUID can be created by using the serial number.
Statement:
Some code is copied from the network, but there is no source, so thanks to those who have contributed code.