I am designing a database for the Film industry (personal exercise).
Each film was made by a company.
A company produces one or more movies.
Each film has one or more genres (action, terror, etc ...)
Each film has one or more actors....
Good afternoon, I am currently filling in 3 tables in my database, so when the data is obtained they are entered in the first table, I get the primary key of the first insert and then fill it in the following two, I tried my code and everything...
In Kotlin I have run into several fragments of code where they use Any and / or generic classes (T), where the objective is to indicate that this variable can be of any kind.
According to official documentation Any is the superclass in kotlin...
Working with Visual Studio 2015, WPF I have a Canvas control which serves as a canvas to draw a skeleton that I get by scanning through the Kinect device when I get in front of the device my skeleton that appears on the canvas freezes.
I trie...
my problem is that when I load the .txt in the tableview it loads it but the text does not appear in the columns, it goes empty but when I select the row if it collects the data belonging to each column but in the table it does not come out and...
I have a database that makes queries to know the amounts of detailed information of each table, which are sorted through a "country table". When you perform the query, only the information that contains data appears, for example:
in the count...
I have the following script that works if I run it from the same directory:
@echo off
for %%i in (*.csv) do (set fname=%%~ni) & call :renameFile
goto :eof
:renameFile
ren "%fname%.csv" "%fname:~13,16%.csv"
goto :eof
What I intend is to...
I have problems with the read.table function. I want to read a table from an url, and save it in R as a dataframe. The url is: link
I wrote this code:
library(RCurl)
a <- getURL('https://datanalytics.com/uploads/datos_treemap.txt')
b...
I would like you to give me a hand with this since I can not find the turn
This would be my code, The variable $a and $b I bring from the controller and the values are:
$a=[1,2,3,4,5,6,7,8,9,10];
$b=[1,4,8]
<select>...
On an Android device we can add an image as a wallpaper ("Wallpaper"),
What are the methods to programmatically add an image as
background on an Android device?.