5 Top HR Modules for ERP Systems

This item was filled under [ ERP Reviews, Software, TIPS AND TRICKS ]

Introduction
A growing number of businesses are adopting ERP systems in order to give their departments accurate and accessible shared data. HR isn’t being left out of the loop. In fact, most major ERP vendors now offer their customers HR modules that help automate an array of tasks while generating crucial data for enterprise planning and optimization.

Continue reading…

Advanced Techniques To Avoid And Detect Deadlocks In .NET Apps

This item was filled under [ Programming, TIPS AND TRICKS ]

Contents

Deadlocks 101
Other Subtle Deadlock Examples
Avoiding Deadlocks with Lock Leveling
Detecting and Breaking Deadlocks
The Algorithms
Spelunking Through the Hosting APIs
Wait Graph Construction and Traversal
Custom Deadlock Host in Action
Wrap-Up

Continue reading…

XML – Video Tutorial Basic

This item was filled under [ Database Related, Software Development, VIDEO TUTORIALS ]

Description: XML – Video Tutorial Basic

Topics: Variables and Code for Calculations

 

01 Introduction

XML stands for Extensible Markup Language and is a language used for describing data. Moreover, XML was not designed to do anything. Instead, it is used by other languages to structure, store, and exchange data. The markup tags in XML are not predefined as they are in HTML. This is why it’s called an extensible language, because you can create your own markup tags. By defining valid tags and semantic – either using a document type definition (DTD) or its successor the XML Schema – it’s possible to create new languages with XML. Some examples of languages specified in XML are: XHTML, SOAP, and RSS.

Continue reading…

Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 3

This item was filled under [ Software Development, VIDEO TUTORIALS, Visual Basic 6.0 ]

Description: Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 3

Topics: Variables and Code for Calculations

 

What is variable

Continue reading…

jBPM Developer Guide Summary

This item was filled under [ Database, FREE E-BOOKS, Programming ]

jBPM Developer Guide Summary

jBPM Developer Guide Summary:

jBPM is an open source business process management (BPM) solution used for defining and executing business processes. Java developers can use jBPM to analyze, improve, and maintain their business processes. This book steers you through each point of the jBPM framework and its implementation to model your business processes. The book starts by explaining the key concepts in a Business Process Management framework. It will help you to learn and practice all of the conceptual and theoretical terms used in the Business Process Management field. Then you will master jPDL, the preferred process language for jBMP, which will let you specify exactly how your processes must be defined and implemented. Continue reading…

The Data Access Handbook: Achieving Optimal Database Application Performance and Scalability

This item was filled under [ Database, FREE E-BOOKS ]

The Data Access Handbook: Achieving Optimal Database Application Performance and Scalability

The Data Access Handbook: Achieving Optimal Database Application Performance and Scalability

Performance and scalability are more critical than ever in today’s enterprise database applications, and traditional database tuning isn’t nearly enough to solve the performance problems you are likely to see in those applications. Nowadays, 75-95% of the time it takes to process a data request is typically spent in the database middleware. Today’s worst performance and scalability problems are generally caused by issues with networking, database drivers, the broader software/hardware environment, and inefficient coding of data requests. In The Data Access Handbook, two of the world’s leading experts on database access systematically address these issues, showing how to achieve remarkable improvements in performance of real-world database applications. Drawing on their unsurpassed experience with every leading database system and database connectivity API, John Goodson and Rob Steward reveal the powerful ways middleware affects application performance and guide developers with designing and writing API code that will deliver superior performance in each leading environment. In addition to covering essential concepts and techniques that apply across database systems and APIs, they present many API examples for ODBC, JDBC, and ADO.NET as well as database system examples for DB2, Microsoft SQL Server, MySQL, Oracle, and Sybase. Continue reading…

MooTools 1.2 Beginner’s Guide

This item was filled under [ FREE E-BOOKS, Programming, Web Development ]

MooTools 1.2 Beginner's Guide

MooTools 1.2 Beginner’s Guide

Learn how to create dynamic, interactive, and responsive cross-browser web applications using this popular JavaScript framework      * Learn how to build super-charged web forms     * Learn how to write powerful and flexible cross-browser code     * Make your web applications more dynamic and user-interactive with AJAX     * Packed with examples that will show you step by step the most important aspects of getting started with MooTools  MooTools is a simple-to-use JavaScript library, ideal for people with basic JavaScript skills who want to elevate their web applications to a superior level. If you’re a newcomer to MooTools looking to build dynamic, rich, and user-interactive web site applications this beginner’s guide with its easy-to-follow step-by-step instructions is all you need to rapidly get to grips with MooTools.  Continue reading…

The Quick Python Book – 2nd Edition By Manning

This item was filled under [ FREE E-BOOKS, Programming ]

The Quick Python Book – 2nd Edition By Manning

The Quick Python Book – 2nd Edition By Manning

The Quick Python Book, Second Edition, is a clear, concise introduction to Python 3, aimed at programmers new to Python. This updated edition includes all the changes in Python 3, itself a significant shift from earlier versions of Python.  The book begins with basic but useful programs that teach the core features of syntax, control flow, and data structures. Continue reading…

Successful Software Development, 2nd Edition

This item was filled under [ FREE E-BOOKS, Programming ]

Successful Software Development, 2nd Edition

Successful Software Development, 2nd Edition

 

Product Description

A systematic approach to consistently successful software development. In the age of the Internet, where software is more mission-critical than ever, it’s no longer enough for your development projects to succeed some of the time. You need to deliver excellence, consistently–and you must do it faster than ever.  Continue reading…

Mysql in visual basic Sample Source Code

  1. 'Here I create a variable named MySQL as a new connection object for MySQL
  2. Global MySQL As New MySQL_CONNECTION
  3.  
  4. Private Function MySQL_Connect() As Boolean
  5. Dim res_MySQL As MYSQL_CONNECTION_STATE
  6.  
  7. MySQL_Connect = False
  8. res_MySQL = MySQL.OpenConnection("server", "username", "password", "database", 3306, CLIENT_COMPRESS)
  9.  
  10. If res_MySQL = MY_CONN_OPEN Then
  11. MySQL_Connect = True
  12. End Function
  13.  
  14. ' Query -> MySQL query to execute.
  15. ' CloseRS -> Optional. Close recordset created after executing Query.
  16. ' RS -> Optional. Reference to externaly created variable, declared as MYSQL_RS. If not closed, it will be available to the program after the query is executed.
  17. ' lAffected -> Optional. Numer of rows affected after te Query.
  18. Public Sub SQLQuery(ByVal Query As String, Optional ByVal CloseRS As Boolean = False, Optional ByRef RS As MYSQL_RS, Optional ByRef lAffected As Long)
  19. Dim ERR As MYSQL_ERR
  20.  
  21. Set RS = MySQL.Execute(Query, lAffected)
  22. Set ERR = MySQL.Error
  23.  
  24. If ERR.Number <> 0 Then
  25. ' Handle any eventual errors that occurred during MySQL query
  26. End If
  27. ERR.Clear
  28. Set ERR = Nothing
  29.  
  30. If CloseRS Then
  31. RS.CloseRecordset
  32. Set RS = Nothing
  33. End If
  34. End Sub
  35. Continue reading...