In CSS we have the attribute border-radius .
Usually use the following forms:
border-radius:10px;
border-radius:10px 20px 20px 10px;
But I came across the following code one of these days and until today I'm not understanding what...
Is it a good practice to create a table to record all the images in a database, or can I create the columns that save the image information for each specific need?
For example, let's suppose I want to create a table for categories of a websit...
Hello, directly asking, how does this type of field work?
I know there are three types:
BLOB = 64KB, MEDIUMBLOB = 16MB and LONGBLOB = 4GB
Given this example:
CREATE TABLE COMPROMISSOS (
ID INTEGER NOT NULL,
DESCRICAO...
I'm confused about some features and terms of the XML markup language that are: node , attribute > element and tag tags , I would like to know what each one is and what are the differences between them?
Follow this XML to help exp...
In my question about static constructors user bigown showed how the code generated from a static constructor is by .NET, this code is called IL Code according to its response .
See the IL code of my question:
.class private auto ansi '...
The title of the question already summarizes everything I want to know. Visual Basic .NET, C #, Boo, C ++ are multi-paradigm languages. What is a paradigm? And a multi-paradigm language?
I have the following tables:
CREATE TABLE tb_lote
(
id_lote integer NOT NULL DEFAULT nextval('tb_lote_seq'::regclass),
ds_lote character varying(255),
CONSTRAINT pktb_lote PRIMARY KEY (id_lote)
);
CREATE TABLE tb_lote_ticket
(
id_lote...