0
votes
1answer
11 views
Fun with Database Triggers and Recursion in RDB
I had a problem this week (which thankfully I've solved in a much better way);
I needed to keep a couple of fields in a database constant.
So, I knocked up a script to place a Trigger on the …
0
votes
1answer
8 views
Underline Text in Label which is in a DataTemplate
Hello,
i have a ListView which contains objects bound from an collection. The representation of the objects i have set with data-template. Now i want to do the following.
There are two TextBlocks in …
3
votes
3answers
61 views
Can a PHP app run when email is sent?
Is there a way to configure a server or a script to execute a php script when an email is received?
In theory this could be extended to other protocols, such as XMPP or SMS, etc.
What I have in mind …
1
vote
4answers
45 views
Is a trigger what I need?
I am just back in the field after 5 years and am very rustly so please be patient. I am working on sql server express and I need to capture new/updated records(only parts of them actually) from a …
0
votes
4answers
41 views
How to alter a DateTime field when it is updated?
Is there a database level function (trigger or something) that I can use to alter a DateTime field when new data is inserted? The issue is that a service I am integrating with happens to send out all …
1
vote
4answers
52 views
Writing Triggers or implementing actions by programming?
I am a newbie. I am writing an application in Java which connects to Oracle 9i database. I need to enforce some rules in my application like:
Chair of Committee A must be added/deleted as a Member in …
0
votes
0answers
18 views
Tree/hierarchy data in MySql table
I have a table that uses Adjacency list model for hierarchy storage. My most relevant columns in this table are therefore:
ItemId // is auto_increment
ParentId
Level
ParentTrail // in the form of …
0
votes
2answers
30 views
Using Trigger to get ID on Insert - SQL 2005
I have a table (table_a) that, upon insert, needs to retrieve the next available id from the available_id field in another table (table_b) to use as the primary key in table_a, and then increment the …
0
votes
0answers
14 views
WPF Trigger and StoryBoard Blues
Hi there.
I'm having some trouble with making triggers do what I want them to...
I have a control that needs to have a contextual menu and a checkbox appear when you mouse over them.
Only thing is …
3
votes
1answer
190 views
Silverlight changing styles based on an objects property value (ie DataTrigger)
Hi,
Does anyone have a successful workaround for changing a style in silverlight based on a property of the underlying data object, in that when the value changes so does the style. I used WPF …
0
votes
2answers
30 views
triggers in new and old columns
Why can't we use :new and :old columns in a statement level trigger?
3
votes
2answers
77 views
How bad is it to simulate IDENTITY/AUTOINCREMENT columns using triggers in Oracle?
I maintain an application that was originally written to be SQL Server-specific (using IDENTITY fields). Thus, we've had to define a lot of triggers to auto increment tables' primary keys.
I'm told …
0
votes
2answers
22 views
SQL Server 2000 Triggers
Using SQL Server 2000, I need to insert the deleted records from one table into a second table.
What's the best way to achieve this using a SQL Server 2000 trigger?
with thanks and regards
Sathia
0
votes
2answers
36 views
Is it possible to insert data in MySQL from a SQL Server trigger?
A fun question for a Friday afternoon, no?
As the question states, is it possible to write a SQL Server trigger that inserts data into a MySQL table?
EDIT: Yes, I know this is basically a dumb …
1
vote
3answers
27 views
Triggering upstream project builds before downstream project
I have the following project layout:
WAR Project A
Upstream Projects
Dependency B
Dependency C
Dependency D
I'm looking to setup A so that every time I want to trigger a build, it will first …
