About: dbkwik:resource/H7uxzXkmqqw0KXZsRPB-8A==   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

AttributesValues
rdfs:label
  • Guía Práctica MySQL/Capítulo 9: Conectividad
rdfs:comment
  • En este capítulo hemos utilizado diferentes sistemas de conexión con el servidor de bases de datos. Entre ellas, merece especial mención el acceso a través de ODBC desde un programa. El código de este programa, desarrollado utilizando SharpDevelop, es el siguiente:
dcterms:subject
abstract
  • En este capítulo hemos utilizado diferentes sistemas de conexión con el servidor de bases de datos. Entre ellas, merece especial mención el acceso a través de ODBC desde un programa. El código de este programa, desarrollado utilizando SharpDevelop, es el siguiente: Imports System Imports System.Data.Odbc Module Main Sub Main() Dim sCon As String sCon="DSN=videoteca" Dim oCon As New OdbcConnection oCon.ConnectionString=sCon oCon.Open Dim sCmd As String sCmd="SELECT * FROM soporte" Dim oCmd As New OdbcCommand oCmd.Connection=oCon oCmd.CommandText=sCmd Dim oReader As OdbcDataReader oReader=oCmd.ExecuteReader Dim sId As string Dim sNombre As String Dim sDesc As String While oReader.Read sId=oReader.GetString(0) sNombre=oReader.GetString(1) sDesc=oReader.GetString(2) Console.Write("("+sId+") ") Console.Write(sNombre+": ") Console.WriteLine(sDesc+".") End While End Sub End Module
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software