/usr/share/doc/firebird
Writing FB code every coder should keep in mind these rules: - Configure your editor to use 4 position for tabstop. - indent: 1 tab - space after e.g. if/for/while/switch - do "if (", not "if(". - no spaces allowed between function name and leading left paren - do "foo()", not "foo ()". - spaces around operation - do "c = a + b;" - spaces between function's parameters - no spaces with pointer sign - do "*p++ = *q++" and "char *a". - Mandatory braces around scoped code. Closing brace always aligned to the first char of the keyword introducing the scope - i.e. if (foo) { // code } or if (foo) { //code } first form is not allowed if condition exeeds one line. Braces may be omitted only if condition doesn't exceed one line and conditional statement also doesn't exceed one line. - No spaces in C++ cast expressions. Do "static_cast<type*>(ptr)", not "static_cast < type * > ( ptr )". - Prefer to keep lines shorter than 80 chars. - Prefer initialization over assignment. - Don't break the build. Before commiting do full build cycle from scratch (on all available platforms). - Always end source files, including headers, with a newline. - Prefer C++ style for comments - Use abstract datatypes (UCHAR, SSHORT, ULONG etc) instead of generic ones (unsigned char, short, unsigned long resp) because generic types can be changed unexpectedly (long int become 64 bits for example).
.
Edit
..
Edit
CHANGELOG.md
Edit
Firebird-3-QuickStart.pdf
Edit
Firebird-4.0.6-ReleaseNotes.pdf
Edit
IDPLicense.txt
Edit
IPLicense.txt
Edit
README.DiskSpaceAllocation
Edit
README.Fedora
Edit
README.IPv6
Edit
README.NTSecurity
Edit
README.Optimizer.txt
Edit
README.SecureRemotePassword.html
Edit
README.Win32LibraryInstallation.txt
Edit
README.Win9X_NT_embedding
Edit
README.build.macosx.md
Edit
README.build.mingw.html
Edit
README.build.msvc.html
Edit
README.build.posix.html
Edit
README.coding.style
Edit
README.connection_string_charset.txt
Edit
README.connection_strings
Edit
README.external_routines.txt
Edit
README.fb_cancel_operation
Edit
README.fb_shutdown
Edit
README.fbsvcmgr
Edit
README.garbage_collector
Edit
README.gbak
Edit
README.incompatibilities.3to4.txt
Edit
README.incompatibilities.txt
Edit
README.instsvc
Edit
README.intl
Edit
README.isql_enhancements.txt
Edit
README.makefiles
Edit
README.md
Edit
README.modern_cpp.md
Edit
README.monitoring_tables
Edit
README.online_validation
Edit
README.performance_monitoring
Edit
README.plugins.html
Edit
README.providers.html
Edit
README.raw_devices
Edit
README.read_consistency.md
Edit
README.read_password_from_file
Edit
README.replication.md
Edit
README.security_database.txt
Edit
README.services_extension
Edit
README.session_idle_timeouts
Edit
README.sha1
Edit
README.statement_timeouts
Edit
README.superclassic
Edit
README.trace_services
Edit
README.transaction_at_snapshot.md
Edit
README.trusted_authentication
Edit
README.user.embedded
Edit
README.user.troubleshooting
Edit
README.wire.compression.html
Edit
README.xnet
Edit
sample
Edit
sql.extensions
Edit
udf_replace.sql
Edit
udf_replace.txt
Edit