So I think I've figured out that the answer is no, they are not the same. I think the "native" connector is the APR (Apache Portable Runtime). Someone correct me if I'm wrong. You can find out more here:
http://tomcat.apache.org/tomcat-5.5-doc/apr.html
And download the latest binaries here...
This is a newbie question(s). On the Apache website for the download of Tomcat 5.5.16, they state that the Native Connector 1.1.1 included in the binaries have a lot of bugs and urge you to download 1.1.2 which is supposed to fix these bugs. When I download version 1.1.2 using the link supplied...
I saw this somewhere, but was confused. Doesn't the command 'SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED' set the isolation level? I was afraid that DBCC USEROPTIONS would just show me what I set in the command before.
I had to use the OpenProcess with the PROCESS_ALL_ACCESS parameter and the th32ProcessID. I then used the return with the TerminateProcess API. It works! Here is part of my code:
hProcess = OpenProcess(PROCESS_ALL_ACCESS, 0, th32ProcessID)
If (hProcess > 0) Then
TerminateProcess hProcess...
Try this:
Option Explicit
Private m_ComboSelection As String
Private m_OldValue As String
Private Sub cboSelect_Click()
Dim iRet As Integer
iRet = MsgBox("Do you want to save", vbYesNo + vbQuestion)
Select Case iRet
Case vbYes
'Save selection...
Does anyone have a way or suggestion to time out an application? We have a problem in our development environment with people leaving our application running when they're not at their desk. When we need to do a re-compile and move a dll to the application server, the dll is already in use. The...
How do you handle keeping state for multiple items? Such as vehicle information for multiple vehicles or contact information for multiple people.
I'm guessing most people just write the info to the DB each time a new person or vehicle is entered instead of trying to keep the state for each...
First, I'm new to ASP so I may be asking something that seems obvious.
Background:
I'm working on a small ASP application that keeps track of state using session variables. The session variables contain objects that belong to a VB6 dll library. There are not any connections to a database. The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.