Tagged Questions
0
votes
2answers
89 views
Accessing data from file A using an element shared with a file B (Foreign Keys)
I have a file car.txt and a file reservation.txt. Both the files have a reservation number (Rxxx).
I want to use the reservation number from reservation.txt to print the details of the car with the ...
0
votes
1answer
911 views
How can change language keyboard layout in Windows (c++)
I need change keyboard language.
with this code i can change the language if in focus app:
#include <cstdlib>
#include <iostream>
#include <windows.h>
#include <stdio.h>
...
2
votes
2answers
2k views
How do I activate foreign keys in C, using sqlite?
I need to use foreign keys at my program, but I don“t know how to activate this PRAGMA using C Language. (I wanna use CASCADE modes.)
With sqlite binary, I just write PRAGMA foreign_keys = on; and it ...
5
votes
3answers
7k views
MySQL: How to determine foreign key relationships programmatically?
Similar to this question but for MySQL....
How can I programmatically determine foreign key references in MySQL (assuming InnoDB)? I can almost get them with:
SHOW TABLE STATUS WHERE Name = ...