Search found 21 matches

by Kurt_Jegge
Wed 21 Apr 2010 14:19
Forum: dotConnect for Oracle
Topic: Support for VS2010?
Replies: 9
Views: 1747

Can't find 5.6 under registered User

Hello I can't find version 5.6 in the registered user area.
My license should be good until june 2010 (CRON-01972)

Best regards

Kurt Jegge
by Kurt_Jegge
Wed 21 Apr 2010 12:45
Forum: dotConnect for Oracle
Topic: Support Issue (No choice but to use forum) - Please Respond
Replies: 5
Views: 1293

License still running but no 5.6??

We have the same problem. I can't see a 5.6 version in the download area.

Thanks for fixing that.

Best regards.

Kurt
by Kurt_Jegge
Mon 09 Nov 2009 19:39
Forum: dotConnect for Oracle
Topic: StoredProcedure with IN ref cursor
Replies: 1
Views: 1141

StoredProcedure with IN ref cursor

Hello

Is there any way to use a stored procedure with an IN ref cursor sth. like:

sample

procedure set_steuerhist( c1_in in sys_refcursor )
is
myRecord steuer_hist%ROWTYPE;
begin
FETCH c1_in INTO myRecord;
insert into steuer_hist
(tkey,
datum,
...
erst_dat
)
values
(myRecord.tkey,
myRecord.datum,
...
myRecord.erst_dat
);
commit;
end set_steuerhist;

thanks Kurt
by Kurt_Jegge
Mon 09 Nov 2009 18:08
Forum: dotConnect for Oracle
Topic: Evtl. bug in Beta version of dotConnect for Oracle 5.35.52
Replies: 1
Views: 1353

Evtl. bug in Beta version of dotConnect for Oracle 5.35.52

Hello

I'm having the following error when I call a stored procedure from linq

Code snippet
string s = null;
db.GetAvdat(h.KategoriCd, h.SchildNr, h.StammNr, ref s);

s gets the value of the first parameter instead of the value of ref s

//StoredProcedure signature, oracle 9207

procedure get_avdat( kat_in varchar2, schild_in varchar2, stamm_nr_in varchar2, avdat_out out varchar2 )

// Generated code
// AvdatOut = ((string)(result.GetParameterValues returns the first parameter, in this case KatIn instead of the ref string AvdatOut
[Function(Name=@"TSTEUER.GET_AVDAT")]
public System.Int32 GetAvdat([Parameter(Name="KAT_IN", DbType="VARCHAR2")] string KatIn, [Parameter(Name="SCHILD_IN", DbType="VARCHAR2")] string SchildIn, [Parameter(Name="STAMM_NR_IN", DbType="VARCHAR2")] string StammNrIn, [Parameter(Name="AVDAT_OUT", DbType="VARCHAR2")] ref string AvdatOut)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), KatIn, SchildIn, StammNrIn, AvdatOut);
AvdatOut = ((string)(result.GetParameterValue(0)));
return ((System.Int32)(result.ReturnValue));
}


// This works manually changed code
[Function(Name=@"TSTEUER.GET_AVDAT")]
public System.Int32 GetAvdat([Parameter(Name="KAT_IN", DbType="VARCHAR2")] string KatIn, [Parameter(Name="SCHILD_IN", DbType="VARCHAR2")] string SchildIn, [Parameter(Name="STAMM_NR_IN", DbType="VARCHAR2")] string StammNrIn, [Parameter(Name="AVDAT_OUT", DbType="VARCHAR2")] ref string AvdatOut)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), KatIn, SchildIn, StammNrIn, AvdatOut);
AvdatOut = ((string)(result.GetParameterValue(3))); //Manually changed to ...Value(3)
return ((System.Int32)(result.ReturnValue));
}

Best regards
Kurt
by Kurt_Jegge
Tue 27 Oct 2009 14:57
Forum: dotConnect for Oracle
Topic: Installation of dcoracle525pro version 49
Replies: 2
Views: 1553

Installation of dcoracle525pro version 49

I reinstalled Visual Studio 2008 and your software and there it works!
so please close this case.

Best regards

Kurt
by Kurt_Jegge
Tue 20 Oct 2009 17:28
Forum: dotConnect for Oracle
Topic: Installation of dcoracle525pro version 49
Replies: 2
Views: 1553

Installation of dcoracle525pro version 49

Hello

I just installed the latest version in vs2008 prof. on win XP 32 Bit.
The oracle developper tools are not installed!

Steps

I create a simple new windows form app.
I drop an OracleConnection component on the form, there are no other
components.
I select the OracleConnection component

Result
In the property inspector no properties show up!
If I switch to the forms properties they are there, if I try to go back
to the OracleConnection component properties, VS2008 crashes.
:shock: :shock:
After restarting VS2008 the devart components in the toolbox
are gone. Great, I thought this bug was fixed.

Greetings

Kurt
by Kurt_Jegge
Tue 22 Sep 2009 14:19
Forum: dotConnect for Oracle
Topic: Installation of dcoracle525pro
Replies: 8
Views: 7343

Sorry for the other postings I hope this is it finally

Kurt

[SuppressMessage("Microsoft.Reliability", "CA2001:AvoidCallingProblematicMethods")]
protected virtual Type GetType(IDesignerHost host, AssemblyName assemblyName, string typeName, bool reference) {
ITypeResolutionService ts = null;
Type type = null;

if (typeName == null) {
throw new ArgumentNullException("typeName");
}

if (host != null) {
ts = (ITypeResolutionService)host.GetService(typeof(ITypeResolutionService));
}

if (ts != null) {

if (reference) {
if (assemblyName != null) {
ts.ReferenceAssembly(assemblyName);
type = ts.GetType(typeName); FormatException

= typeName = "Devart.Data.Oracle.OracleConnection"
ts.GetType expects
>System.Drawing.dll!System.Drawing.Design.ToolboxItem.GetType(System.ComponentModel.Design.IDesignerHost host, System.Reflection.AssemblyName assemblyName, string typeName = "Devart.Data.Oracle.OracleConnection", bool reference) Zeile 569 C#
by Kurt_Jegge
Tue 22 Sep 2009 13:11
Forum: dotConnect for Oracle
Topic: Installation of dcoracle525pro
Replies: 8
Views: 7343

System.FormatException ist aufgetreten.
Message="Die Eingabezeichenfolge hat das falsche Format."
Source="mscorlib"
StackTrace:
bei System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
InnerException:


- $exception {"Die Eingabezeichenfolge hat das falsche Format."} System.Exception {System.FormatException}
- [System.FormatException] {"Die Eingabezeichenfolge hat das falsche Format."} System.FormatException
- base {"Die Eingabezeichenfolge hat das falsche Format."} System.SystemException {System.FormatException}
- base {"Die Eingabezeichenfolge hat das falsche Format."} System.Exception {System.FormatException}
_className Der Wert des Felds "_className" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_data Der Wert des Felds "_data" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.Collections.IDictionary
_dynamicMethods Der Wert des Felds "_dynamicMethods" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. object
_exceptionMethod Der Wert des Felds "_exceptionMethod" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.Reflection.MethodBase
_exceptionMethodString Der Wert des Felds "_exceptionMethodString" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_helpURL Der Wert des Felds "_helpURL" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_HResult Der Wert des Felds "_HResult" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. int
_innerException Der Wert des Felds "_innerException" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.Exception
_message Der Wert des Felds "_message" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_remoteStackIndex Der Wert des Felds "_remoteStackIndex" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. int
_remoteStackTraceString Der Wert des Felds "_remoteStackTraceString" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_source Der Wert des Felds "_source" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_stackTrace Der Wert des Felds "_stackTrace" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. object
_stackTraceString Der Wert des Felds "_stackTraceString" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_xcode Der Wert des Felds "_xcode" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. int
_xptrs Der Wert des Felds "_xptrs" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.IntPtr
- Data {System.Collections.ListDictionaryInternal} System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
+ [System.Collections.ListDictionaryInternal] {System.Collections.ListDictionaryInternal} System.Collections.ListDictionaryInternal
IsFixedSize false bool
IsReadOnly false bool
+ Keys {System.Collections.ListDictionaryInternal.NodeKeyValueCollection} System.Collections.ICollection {System.Collections.ListDictionaryInternal.NodeKeyValueCollection}
+ Values {System.Collections.ListDictionaryInternal.NodeKeyValueCollection} System.Collections.ICollection {System.Collections.ListDictionaryInternal.NodeKeyValueCollection}
HelpLink null string
HResult -2146233033 int
- InnerException null System.Exception
+ Statische Member
IsTransient false bool
Message "Die Eingabezeichenfolge hat das falsche Format." string
Source "mscorlib" string
StackTrace " bei System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)" string
+ TargetSite {Void StringToNumber(System.String, System.Globalization.NumberStyles, NumberBuffer ByRef, System.Globalization.NumberFormatInfo, Boolean)} System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
+ Statische Member
_className Der Wert des Felds "_className" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_data Der Wert des Felds "_data" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.Collections.IDictionary
_dynamicMethods Der Wert des Felds "_dynamicMethods" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. object
_exceptionMethod Der Wert des Felds "_exceptionMethod" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.Reflection.MethodBase
_exceptionMethodString Der Wert des Felds "_exceptionMethodString" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_helpURL Der Wert des Felds "_helpURL" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_HResult Der Wert des Felds "_HResult" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. int
_innerException Der Wert des Felds "_innerException" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.Exception
_message Der Wert des Felds "_message" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_remoteStackIndex Der Wert des Felds "_remoteStackIndex" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. int
_remoteStackTraceString Der Wert des Felds "_remoteStackTraceString" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_source Der Wert des Felds "_source" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_stackTrace Der Wert des Felds "_stackTrace" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. object
_stackTraceString Der Wert des Felds "_stackTraceString" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. string
_xcode Der Wert des Felds "_xcode" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. int
_xptrs Der Wert des Felds "_xptrs" kann nicht abgerufen werden, da keine Informationen über die enthaltende Klasse verfügbar sind. System.IntPtr
+ Data {System.Collections.ListDictionaryInternal} System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
HelpLink null string
HResult -2146233033 int
+ InnerException null System.Exception
IsTransient false bool
Message "Die Eingabezeichenfolge hat das falsche Format." string
Source "mscorlib" string
StackTrace " bei System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)" string
+ TargetSite {Void StringToNumber(System.String, System.Globalization.NumberStyles, NumberBuffer ByRef, System.Globalization.NumberFormatInfo, Boolean)} System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
+ Statische Member
str Der Wert von "local" oder von Argument "str" ist in diesem Anweisungszeiger nicht verfügbar und kann daher nicht ermittelt werden. Möglicherweise wurde er bei der Optimierung entfernt. string
options Der Wert von "local" oder von Argument "options" ist in diesem Anweisungszeiger nicht verfügbar und kann daher nicht ermittelt werden. Möglicherweise wurde er bei der Optimierung entfernt. System.Globalization.NumberStyles
number Der Wert von "local" oder von Argument "number" ist in diesem Anweisungszeiger nicht verfügbar und kann daher nicht ermittelt werden. Möglicherweise wurde er bei der Optimierung entfernt. System.Number.NumberBuffer
info Der Wert von "local" oder von Argument "info" ist in diesem Anweisungszeiger nicht verfügbar und kann daher nicht ermittelt werden. Möglicherweise wurde er bei der Optimierung entfernt. System.Globalization.NumberFormatInfo
parseDecimal Der Wert von "local" oder von Argument "parseDecimal" ist in diesem Anweisungszeiger nicht verfügbar und kann daher nicht ermittelt werden. Möglicherweise wurde er bei der Optimierung entfernt. bool
by Kurt_Jegge
Mon 21 Sep 2009 07:24
Forum: dotConnect for Oracle
Topic: Installation of dcoracle525pro
Replies: 8
Views: 7343

System.FormatException ist aufgetreten.
Message="Die Eingabezeichenfolge hat das falsche Format."
Source="mscorlib"
StackTrace:
bei System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
InnerException:

> mscorlib.dll!System.Number.StringToNumber(string str, System.Globalization.NumberStyles options, ref System.Number.NumberBuffer number, System.Globalization.NumberFormatInfo info, bool parseDecimal) + 0xf7 Bytes
mscorlib.dll!System.Number.ParseInt32(string s, System.Globalization.NumberStyles style = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign, System.Globalization.NumberFormatInfo info) + 0x78 Bytes
mscorlib.dll!System.Version.Version(string version) + 0x104 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.AssemblyFoldersEx.ConvertToVersion(string version) + 0xb4 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.AssemblyFoldersEx.GatherVersionStrings(string targetRuntimeVersion = "v3.5", System.Collections.IEnumerable versions) + 0x10d Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.AssemblyFoldersEx.FindDirectories(Microsoft.Win32.RegistryKey baseKey = {HKEY_LOCAL_MACHINE}, string registryKeyRoot = "Software\Microsoft\.NetFramework", string targetRuntimeVersion, string registryKeySuffix = "AssemblyFoldersEx", string osVersion = null, string platform = null, Microsoft.Build.Tasks.GetRegistrySubKeyNames getRegistrySubKeyNames = {Method = {System.Collections.IEnumerable GetSubKeyNames(Microsoft.Win32.RegistryKey, System.String)}}, Microsoft.Build.Tasks.GetRegistrySubKeyDefaultValue getRegistrySubKeyDefaultValue = {Method = {System.String GetDefaultValue(Microsoft.Win32.RegistryKey, System.String)}}) + 0x49 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.AssemblyFoldersEx.AssemblyFoldersEx(string registryKeyRoot, string targetRuntimeVersion, string registryKeySuffix, string osVersion, string platform, Microsoft.Build.Tasks.GetRegistrySubKeyNames getRegistrySubKeyNames, Microsoft.Build.Tasks.GetRegistrySubKeyDefaultValue getRegistrySubKeyDefaultValue) + 0x77 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.AssemblyFoldersExResolver.Resolve(Microsoft.Build.Shared.AssemblyNameExtension assemblyName = {Devart.Data.Oracle, Version=5.25.42.0, Culture=neutral, PublicKeyToken=09af7300eec23701}, string rawFileNameCandidate, bool isPrimaryProjectReference = true, bool wantSpecificVersion = true, string[] executableExtensions = {string[2]}, string hintPath, string assemblyFolderKey, System.Collections.ArrayList assembliesConsideredAndRejected = Count = 10, out string foundPath = null, out bool userRequestedSpecificFile) + 0x6f Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.AssemblyResolution.ResolveReference(System.Collections.Generic.IEnumerable jaggedResolvers, Microsoft.Build.Shared.AssemblyNameExtension assemblyName = {Devart.Data.Oracle, Version=5.25.42.0, Culture=neutral, PublicKeyToken=09af7300eec23701}, string rawFileNameCandidate = "Devart.Data.Oracle, Version=5.25.42.0, Culture=neutral, PublicKeyToken=09af7300eec23701", bool isPrimaryProjectReference = true, bool wantSpecificVersion = true, string[] executableExtensions = {string[2]}, string hintPath = "", string assemblyFolderKey = "", System.Collections.ArrayList assembliesConsideredAndRejected = Count = 10, out string resolvedSearchPath = "", out bool userRequestedSpecificFile = false) + 0xa0 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.ReferenceTable.ResolveReference(Microsoft.Build.Shared.AssemblyNameExtension assemblyName = {Devart.Data.Oracle, Version=5.25.42.0, Culture=neutral, PublicKeyToken=09af7300eec23701}, string rawFileNameCandidate, Microsoft.Build.Tasks.Reference reference = {*Unresolved*}) + 0x1f9 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.ReferenceTable.SetPrimaryAssemblyReferenceItem(Microsoft.Build.Framework.ITaskItem referenceAssemblyName = {Devart.Data.Oracle, Version=5.25.42.0, Culture=neutral, PublicKeyToken=09af7300eec23701}) + 0x113 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.ReferenceTable.SetPrimaryItems(Microsoft.Build.Framework.ITaskItem[] referenceAssemblyFiles, Microsoft.Build.Framework.ITaskItem[] referenceAssemblyNames = {Microsoft.Build.Framework.ITaskItem[10]}, System.Collections.ArrayList exceptions = Count = 0) + 0x6c Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.ReferenceTable.ComputeClosure(Microsoft.Build.Tasks.DependentAssembly[] remappedAssembliesValue, Microsoft.Build.Framework.ITaskItem[] referenceAssemblyFiles, Microsoft.Build.Framework.ITaskItem[] referenceAssemblyNames, System.Collections.ArrayList exceptions) + 0x29 Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.ResolveAssemblyReference.Execute(Microsoft.Build.Shared.FileExists fileExists, Microsoft.Build.Shared.DirectoryExists directoryExists, Microsoft.Build.Tasks.GetDirectories getDirectories, Microsoft.Build.Tasks.GetAssemblyName getAssemblyName, Microsoft.Build.Tasks.GetAssemblyMetadata getAssemblyMetadata, Microsoft.Build.Tasks.GetRegistrySubKeyNames getRegistrySubKeyNames, Microsoft.Build.Tasks.GetRegistrySubKeyDefaultValue getRegistrySubKeyDefaultValue, Microsoft.Build.Tasks.GetLastWriteTime getLastWriteTime) + 0x34f Bytes
Microsoft.Build.Tasks.v3.5.dll!Microsoft.Build.Tasks.ResolveAssemblyReference.Execute() + 0x12f Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TaskEngine.ExecuteInstantiatedTask(Microsoft.Build.BuildEngine.EngineProxy engineProxy, Microsoft.Build.BuildEngine.ItemBucket bucket = {Microsoft.Build.BuildEngine.ItemBucket}, Microsoft.Build.BuildEngine.TaskExecutionMode howToExecuteTask = ExecuteTaskAndGatherOutputs, Microsoft.Build.Framework.ITask task = {Microsoft.Build.Tasks.ResolveAssemblyReference}, out bool taskResult = false) + 0x60 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TaskEngine.ExecuteBucket(Microsoft.Build.BuildEngine.EngineProxy engineProxy, Microsoft.Build.BuildEngine.ItemBucket bucket = {Microsoft.Build.BuildEngine.ItemBucket}, int bucketNumber, Microsoft.Build.BuildEngine.TaskExecutionMode howToExecuteTask) + 0x213 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TaskEngine.ExecuteTask(Microsoft.Build.BuildEngine.TaskExecutionMode howToExecuteTask = ExecuteTaskAndGatherOutputs, Microsoft.Build.BuildEngine.Lookup lookup) + 0xe7 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TaskExecutionState.TaskEngineExecuteTask(Microsoft.Build.BuildEngine.TaskEngine taskEngine, Microsoft.Build.BuildEngine.TaskExecutionMode howTaskShouldBeExecuted, Microsoft.Build.BuildEngine.Lookup lookup) + 0x12 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TaskExecutionState.ExecuteTask() + 0xb6 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TaskExecutionModule.ExecuteTask(Microsoft.Build.BuildEngine.TaskExecutionState taskState) + 0x46 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TargetExecutionWrapper.SubmitNonIntrinsicTask(System.Xml.XmlElement taskNode, Microsoft.Build.Framework.ITaskHost hostObject, Microsoft.Build.BuildEngine.ProjectBuildState buildContext) + 0xc3 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TargetExecutionWrapper.ExecuteCurrentTask(Microsoft.Build.BuildEngine.ProjectBuildState buildContext) + 0x177 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TargetExecutionWrapper.ContinueRunningTasks(Microsoft.Build.BuildEngine.ProjectBuildState buildContext, Microsoft.Build.BuildEngine.TaskExecutionContext taskExecutionContext, bool startingFirstTask) + 0x8b Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TargetExecutionWrapper.ExecuteDependentTarget(Microsoft.Build.BuildEngine.ProjectBuildState buildContext) + 0x82 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TargetExecutionWrapper.ContinueBuildingDependencies(Microsoft.Build.BuildEngine.ProjectBuildState buildContext) + 0xf6 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.TargetExecutionWrapper.ContinueBuild(Microsoft.Build.BuildEngine.ProjectBuildState buildContext = ProjectBuildState (NameOfTargetInProgress="Compile", NameOfBlockingTarget="ResolveAssemblyReferences", BuildResult=false, BuildComplete=false), Microsoft.Build.BuildEngine.TaskExecutionContext taskExecutionContext = null) + 0x77 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Project.ExecuteNextActionForProjectContext(Microsoft.Build.BuildEngine.ProjectBuildState buildContext, bool initialCall) + 0x53 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Project.CalculateNextActionForProjectContext(Microsoft.Build.BuildEngine.ProjectBuildState buildContext = ProjectBuildState (NameOfTargetInProgress="Compile", NameOfBlockingTarget="ResolveAssemblyReferences", BuildResult=false, BuildComplete=false)) + 0xdf Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Project.ContinueBuild(Microsoft.Build.BuildEngine.ProjectBuildState buildContext = ProjectBuildState (NameOfTargetInProgress="Compile", NameOfBlockingTarget="ResolveAssemblyReferences", BuildResult=false, BuildComplete=false), Microsoft.Build.BuildEngine.TaskExecutionContext taskExecutionContext) + 0x8c Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Project.BuildInternal(Microsoft.Build.BuildEngine.BuildRequest buildRequest) + 0x33 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Engine.BuildProjectInternalInitial(Microsoft.Build.BuildEngine.BuildRequest buildRequest, Microsoft.Build.BuildEngine.Project project) + 0x64 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Engine.BuildProjectInternal(Microsoft.Build.BuildEngine.BuildRequest buildRequest = BuildRequest (Project="C:\Projekte\test\WindowsFormsApplication16\WindowsFormsApplication16\WindowsFormsApplication16.csproj", Targets="Compile", NodeIndex=-2, HandleId=-1), Microsoft.Build.BuildEngine.ProjectBuildState buildContext = null, Microsoft.Build.BuildEngine.TaskExecutionContext taskExecutionContext, bool initialCall) + 0x7f Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Engine.EngineBuildLoop(Microsoft.Build.BuildEngine.BuildRequest terminatingBuildRequest = null) + 0x4a1 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Engine.PostProjectEvaluationRequests(Microsoft.Build.BuildEngine.Project project, string[] projectFiles, string[][] targetNames, Microsoft.Build.BuildEngine.BuildPropertyGroup[] globalPropertiesPerProject, System.Collections.IDictionary[] targetOutputsPerProject = {System.Collections.IDictionary[1]}, Microsoft.Build.BuildEngine.BuildSettings buildFlags, string[] toolVersions) + 0x1ab Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Engine.BuildProject(Microsoft.Build.BuildEngine.Project project, string[] targetNames, System.Collections.IDictionary targetOutputs, Microsoft.Build.BuildEngine.BuildSettings buildFlags) + 0x95 Bytes
Microsoft.Build.Engine.dll!Microsoft.Build.BuildEngine.Project.Build(string[] targetNames, System.Collections.IDictionary targetOutputs, Microsoft.Build.BuildEngine.BuildSettings buildFlags) + 0x24 Bytes
Microsoft.VisualStudio.CommonIDE.dll!Microsoft.VisualStudio.Build.ComInteropWrapper.ProjectShim.BuildTargetListWithFlags(string targetList, System.Collections.IDictionary targetOutputs, Microsoft.VisualStudio.Build.ComInteropWrapper.BuildSettingsShim buildFlags) + 0x6f Bytes
[Übergang von Systemeigen zu Verwaltet]
[Übergang von Verwaltet zu Systemeigen]
Microsoft.VisualStudio.Design.dll!Microsoft.VisualStudio.Design.VSTypeResolutionService.PerformReferenceUpdate(System.Collections.Generic.List newReferences) + 0x1eb Bytes
Microsoft.VisualStudio.Design.dll!Microsoft.VisualStudio.Design.VSTypeResolutionService.System.ComponentModel.Design.ITypeResolutionService.ReferenceAssembly(System.Reflection.AssemblyName name = {Devart.Data.Oracle, Version=5.25.42.0, Culture=neutral, PublicKeyToken=09af7300eec23701}) + 0xc5 Bytes
Microsoft.VisualStudio.Design.dll!Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.ReferenceAssembly(System.Reflection.AssemblyName name) + 0xe Bytes
System.Drawing.dll!System.Drawing.Design.ToolboxItem.GetType(System.ComponentModel.Design.IDesignerHost host, System.Reflection.AssemblyName assemblyName, string typeName = "Devart.Data.Oracle.OracleConnection", bool reference) + 0x76 Bytes
System.Drawing.dll!System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost host = {System.ComponentModel.Design.DesignerHost}) + 0x39 Bytes
System.Drawing.dll!System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost host = {System.ComponentModel.Design.DesignerHost}, System.Collections.IDictionary defaultValues = Count = 3) + 0x2b Bytes
System.Drawing.dll!System.Drawing.Design.ToolboxItem.CreateComponents(System.ComponentModel.Design.IDesignerHost host, System.Collections.IDictionary defaultValues) + 0x30 Bytes
System.Design.dll!System.Windows.Forms.Design.OleDragDropHandler.CreateTool(System.Drawing.Design.ToolboxItem tool = {OracleConnection}, System.Windows.Forms.Control parent, int x, int y, int width, int height, bool hasLocation, bool hasSize, System.Windows.Forms.Design.Behavior.ToolboxSnapDragDropEventArgs e) + 0x2d9 Bytes
System.Design.dll!System.Windows.Forms.Design.ParentControlDesigner.CreateToolCore(System.Drawing.Design.ToolboxItem tool, int x, int y, int width, int height, bool hasLocation, bool hasSize) + 0x66 Bytes
System.Design.dll!System.Windows.Forms.Design.ParentControlDesigner.CreateTool(System.Drawing.Design.ToolboxItem tool, System.Drawing.Point location) + 0x19 Bytes
System.Design.dll!System.Windows.Forms.Design.ParentControlDesigner.OnDragDrop(System.Windows.Forms.DragEventArgs de) + 0x1c5 Bytes
System.Design.dll!System.Windows.Forms.Design.ControlDesigner.TransparentBehavior.OnDragDrop(System.Windows.Forms.Design.Behavior.Glyph g, System.Windows.Forms.DragEventArgs e) + 0x3a Bytes
System.Design.dll!System.Windows.Forms.Design.Behavior.Behavior.OnDragDrop(System.Windows.Forms.Design.Behavior.Glyph g, System.Windows.Forms.DragEventArgs e) + 0x86 Bytes
System.Design.dll!System.Windows.Forms.Design.Behavior.ToolboxItemSnapLineBehavior.OnDragDrop(System.Windows.Forms.Design.Behavior.Glyph g, System.Windows.Forms.DragEventArgs e) + 0x69 Bytes
System.Design.dll!System.Windows.Forms.Design.Behavior.BehaviorService.OnDragDrop(System.Windows.Forms.DragEventArgs e) + 0x29 Bytes
System.Design.dll!System.Windows.Forms.Design.Behavior.BehaviorService.AdornerWindow.OnDragDrop(System.Windows.Forms.DragEventArgs e) + 0x1e Bytes
System.Windows.Forms.dll!System.Windows.Forms.Control.System.Windows.Forms.IDropTarget.OnDragDrop(System.Windows.Forms.DragEventArgs drgEvent) + 0xb Bytes
System.Windows.Forms.dll!System.Windows.Forms.DropTarget.System.Windows.Forms.UnsafeNativeMethods.IOleDropTarget.OleDrop(object pDataObj, int grfKeyState, long pt, ref int pdwEffect = 3) + 0x53 Bytes
[Übergang von Systemeigen zu Verwaltet]
by Kurt_Jegge
Wed 16 Sep 2009 14:02
Forum: Oracle Data Access Components
Topic: dclodac120.bpl
Replies: 1
Views: 1315

I had it investigated today after the virus signature
update of norman accepts the file it without complaint.

Kurt
by Kurt_Jegge
Tue 15 Sep 2009 16:34
Forum: Oracle Data Access Components
Topic: dclodac120.bpl
Replies: 1
Views: 1315

dclodac120.bpl

:shock:

our norman virus scanner indicates an W32/ZbotJDV virus in this file.
Can anybody confirm this or is our scanner overreacting?

Thanks
Kurt
by Kurt_Jegge
Mon 14 Sep 2009 17:53
Forum: dotConnect for Oracle
Topic: Installation of dcoracle525pro
Replies: 8
Views: 7343

1)
dotConnect for Oracle version5.25.42.0
OracleDevelopper Tools not installed

2)
Visual Studion 2008 version 9.0.30729.1 SP
.NET Framework 3.5 SP1

3)
WinXP prof. x86
by Kurt_Jegge
Mon 14 Sep 2009 10:06
Forum: Oracle Data Access Components
Topic: AQ how to register an agent from devart
Replies: 1
Views: 1514

AQ how to register an agent from devart

Hello

Is there an example how tho register an agent
in an oracle raw queue which would be for multipleConsumers?

I used the ODAC demo but there is a non multipleConsumer
sample.

code:

Oracle 9i testcode:

queuetable

BEGIN
DBMS_AQADM.CREATE_QUEUE_TABLE (
queue_table => 'trafdev.print_queue_table',
queue_payload_type => 'RAW',
multiple_consumers => TRUE);
END;
/

the so created user_data field of the queuetable is a blob

enqueuing

declare
r_enqueue_options DBMS_AQ.ENQUEUE_OPTIONS_T;
r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
v_message_handle RAW(16);
o_payload RAW(200);
begin
o_payload := SYS.UTL_RAW.cast_to_raw ('Hello');
SYS.DBMS_AQ.ENQUEUE('print_queue', r_enqueue_options,
r_message_properties, o_payload, v_message_handle);
COMMIT;
end;

I couldn't find a working example how to create and set
TQueueAgents and TQueueAgent with multiple_consumers = YES,
so I used the OracleQueue properties which I set before.

procedure TForm1.Button1Click(Sender: TObject);
var
Agents: TQueueAgents;
Agent: TQueueAgent;
StringPayload : String;
MsgId: String;
begin
Agents := oq.EnqueueMessageProperties.RecipientList;
try
Agent := oq.EnqueueMessageProperties.RecipientList.Items[0];
try
oq.Listen(Agents, Agent, -1);
MsgId := oq.Dequeue(StringPayload);
memo1.Lines.Add('DEQUEUE: MsgId: ' + MsgId + ' Payload: ' +
StringPayload);
finally
Agent := nil;
end;
finally
Agents := nil;
end;
end;

Dequeuing works MsgId is OK, the queue is emptied but in
Payload I get '?????'

I have to admit that I am starting with Oracle Queuing.
Therefore any help would be much appreciated.

Best regards.

Kurt
by Kurt_Jegge
Mon 14 Sep 2009 08:14
Forum: Oracle Data Access Components
Topic: DBMS_AQ
Replies: 7
Views: 1695

Thank you Plash

I installed the latest version of odac and removed the
usage of oracle objects with the raw type and
now I works in direct mode.

Again thanks a lot.

With best regards

Kurt
by Kurt_Jegge
Mon 14 Sep 2009 06:43
Forum: Oracle Data Access Components
Topic: DBMS_AQ
Replies: 7
Views: 1695

I will test it first with your latest version 680d12, which I could
install now with the /force switch.

I let you know.