This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE logisticaembarques( | |
idEmbarque INT IDENTITY PRIMARY KEY, | |
forwater VARCHAR(100) NOT NULL, | |
numeroCont INT NOT NULL, | |
contFecha date not null, | |
numMercancia int not null, | |
puertoLLegada int not null, | |
fechabl date null, | |
fechaETA date null, | |
fechaCEDIS date null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
// mas referencias https://github.com/Microsoft/sql-server-samples/blob/master/samples/tutorials/go/crud.go | |
import ( | |
"database/sql" | |
"fmt" | |
"log" | |
_ "github.com/denisenkom/go-mssqldb" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Select D.invno, D.custno, D.box, D.pallet, D.truck, D.ddate, D.emp, D.term, D.recipna, D.signature, C.guia | |
from delivinfo D, cosumary C | |
where D.invno= C.invno |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
se añade <uses-feature android:name="android.hardware.sensor.proximity"/> al manifest para obtener permisos para utilizar rl hardware | |
*/ | |
package com.solidfouns.miprimeraapp; | |
import android.graphics.Color; | |
import android.hardware.SensorEvent; | |
import android.hardware.SensorEventListener; | |
import android.hardware.SensorManager; | |
import android.hardware.Sensor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Definir primero textview y button en el xml*/ | |
package com.example.mrk2.platzykotlin | |
import android.support.v7.app.AppCompatActivity | |
import android.os.Bundle | |
import android.widget.Button | |
import android.widget.TextView | |
data class Cursos(val nombre:String, val url:String) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
= igual | |
< menor que | |
> mayor que | |
<= menor igual | |
>= mayor igual que | |
<> diferente a | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
El nombre de columna "SubVersion" no es válido | |
Invalid argument 716061-al checar Tabla SysBase | |
*/ | |
--segundo paso | |
ALTER TABLE VERSION ADD SubVersion varchar(50) null | |
--primer paso | |
SELECT SUBVERSION,* FROM VERSION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****** Object: StoredProcedure [dbo].[spEmbudoVentasABC] Script Date: 04/25/2017 18:05:18 ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
--exec spEmbudoVentasABC 'LMAGVT','(Todos)','(Todos)','AGP','ZZZZZZ', '07/01/2014','07/31/2014','LMA',0,null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form method="post">{% csrf_token %} | |
{{ form.as_p }} | |
<input type="submit" value="Submit" /> | |
</form> | |
##################################################### list | |
<h1>Servers</h1> | |
<ul> | |
{% for server in object_list %} | |
<li>{{ server.name }} : | |
<a href="{% url "server_edit" server.id %}">{{ server.ip }}</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
browser = webdriver.Firefox() | |
print "WebDriver Object", browser | |
browser.maximize_window() | |
browser.get('https://facebook.com') | |
#seleccionamos los datos enque se ingresara el formulario |