Exemple #1
0
 /// <summary>
 /// Construct a [[DataFrame]] representing the database table accessible via JDBC URL,
 /// url named table and connection properties.
 /// </summary>
 public DataFrame Jdbc(string url, string table, Dictionary <String, String> properties)
 {
     return(new DataFrame(dataFrameReaderProxy.Jdbc(url, table, properties), sparkContext));
 }
 /// <summary>
 /// Construct a [[DataFrame]] representing the database table accessible via JDBC URL,
 /// url named table and connection properties.
 /// </summary>
 public DataFrame Jdbc(string url, string table, Dictionary <String, String> properties)
 {
     logger.LogInfo("Constructing DataFrame using JDBC source. Url={0}, tableName={1}", url, table);
     return(new DataFrame(dataFrameReaderProxy.Jdbc(url, table, properties), sparkContext));
 }