Andy Mendelsohn, senior vice president of Database Server Technologies
at Oracle, talks about how Oracle Database 11g Release 2 answers
customer challenges and reduces costs.
I have installed git (not GitHub) on Windows 7 x64 Home Premium, and I cannot get it to work. Opening Git Bash outputs the following:
Welcome to Git (version 1.9.4-preview20140815)
Run 'git help git' to display the help index.
Run 'get help <command>' to display help for specific commands.
sh.exe": /dev/null: No such file or directory…
Is it possible to read a .PST file using C#? I would like to do this as a standalone application, not as an Outlook addin (if that is possible).
If have seen other SO questions similar to this mention MailNavigator but I am looking to do this programmatically in C#.
I have looked at the Microsoft.Office.Interop.Outlook namespace but that…
Hi,
I'm working on an app that uses AudioRecord class to get input data from the phone mic. For some reason I'm unable to mute the mic. I have tried with different AudioSources (DEFAULT, MIC and VOICE_UPLINK) when creating the AudioRecord object, but there's no difference in the muting behaviour.
The muting itself, I'm trying to achieve…
Since the last security changes in Java 7u40, it is required to sign a JNLP file. This can either be done by adding the final JNLP in JNLP-INF/APPLICATION.JNLP, or by providing a template JNLP in JNLP-INF/APPLICATION_TEMPLATE.JNLP in the signed main jar.
The first way works well, but we would like to allow to pass a previously unknown…
I have a simple class hierarchy, similar to the following:
@Entity
@Table(name="animal")
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name="animal_type", discriminatorType=DiscriminatorType.STRING)
public abstract class Animal { }
@Entity
@DiscriminatorValue("cat")
public class Cat extends Animal { }
…
I followed exactly what I thought I understood the steps to be in the iPhone Programming Guide for specifying that my app requires telephony (I opened MyApp-info.plist, added a new key called UIRequiredDeviceCapabilties, set the key type to Dictionary, added a new row with key set to "telephony", type Boolean, value YES), and sent…
When navigating to previous calls/events during debugging with IntelliTrace, I can't see a snapshot of the value of locally-defined variables. When hovering with the mouse I get the message "Intellitrace data has not been collected". Does anyone know why?
I am having a frustrating time with Blend reporting "Window is not supported in a Windows Presentation Foundation (WPF) project." due to unbuildable configurations but can't quite work out how to mangle my way out of it.
I've worked out it is probably due to my trying to have a single solution with x86 and x64 configurations.…
Hi,
I'm just starting out with NHibernate and I'm having trouble with running more complex queries.
I have entities with a list of tags attached. The user will provide two lists of tags, include and exclude.
I need to find all the entities that have all of the include tags, and exclude any entites that have any tag in the…
Is there any way to disable the auto-indent Xcode performs to align colons when breaking up a long method name into multiple lines?
That is, I'd rather not have this:
UIBarButtonItem *longDescriptiveButton = [[UIBarButtonItem alloc] initWithTitle:@"Title of Button"
…
Im running cygwin on a windows vista pc. Ive successfully installed sshd, configured, and built gitosis.
I can remotely git clone the gitosis-admin.git repository, made a change to the config, committed and pushed back to cygwin machine successfully.
However the post-update doesnt execute and the new repository (as specified…
Hi,
I am trying to get the name of the property associated with a particular DataGridColumn, so that I can then do some stuff based on that. This function is called when the user clicks context menu item on the column's header...
This is fine for the out-of-the-box ready-rolled column types like DataGridTextColumn, since…
Is it possible (without violating any licenses) to write a native C/C++ application on top of the Android OS and make it run as a daemon process?
There are already several daemon process' running which one can see with the 'ps' command, the legal part concerns me the most. And also the lack of documentation on how to…
I'm having the "Microsoft JScript runtime error: Object doesn't support this property or method" error when calling the datepicker function on a textbox generated from my data model.
in the head section I have:
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<script…
I've had two previous questions about active record store that all came down to the same thing.
Here's what I want:
I want to access the session at any time and see who is online right now and access their session variable from anywhere.
I need this because:
Users are separated into groups. If…
Anyone know why only undirectional serialization is supported in the Linq designer?
Consider the following example:
Say we have a Customer who requested an Order containing Products. We set the Serialization Mode in the Linq designer to Unidirectional to enable serialization.
When looking at…
Hi,
I'm trying to map two domain entities to the same table. We're doing a smart entity for our domain model, so we have the concept of an Editable Address and a readonly Address. I have both mapped using Classmaps, and everything seems to go fine until we try to export the schema using the…
I'm wondering if anyone knows of a way to export geometry/textures for a rigged, animated character as Quake MD2? I’m developing an app for mobile devices, and I’ve found that MD2 works great for lightweight OpenGL rendering. I have several animated characters, and I’d like to export them as…
Hi,
I've got combo box bound to a custom collection type - its basically an overridden ObservableCollection which I've added a facility to update the underlying collection (via Unity).
I don't want to confuse the issue too much, but thats the background.
My xaml looks like this
…
Given a lookup table:
| ID | TYPE | CODE | DESCRIPTION |
| 1 | ORDER_STATUS | PENDING | PENDING DISPOSITION |
| 2 | ORDER_STATUS | OPEN | AWAITING DISPOSITION |
| 3 | OTHER_STATUS | OPEN | USED BY OTHER ENTITY |
If I have an entity:
…
NUnit is failing in C++/CLI with a System.IO.FileNotFoundException.
I have tried my own freshly-created project, the C++/CLI sample included with NUnit and the one from CodeProject How to use NUnit to test native C++ code using Visual Studio 2008sp1 with NUnit 2.5.5 as…
Is anyone aware of any frameworks for configuring UIs and possibly plugins for .NET Compact Framework (rich client) applications? Ideally, I'm hoping to find something that would allow you to bascially configure an application's UI and screenflow via an XML file, or…
Hey guys,
I've been using the Graph API for a while.
One feature of my application is that it allows a user to post a message on their friends walls (dont worry it is not spam).
Anyway...there is a limit on the API and it will only allow a certain number of posts…
I'm trying to convert a string to GUID with sscanf:
GUID guid;
sscanf( "11111111-2222-3333-4455-667788995511", "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
&guid.Data1, &guid.Data2, &guid.Data3,
&guid.Data4[0],…