예제 #1
0
 /// <summary>
 /// Registers this DataFrame as a temporary table using the given name.  The lifetime of this
 /// temporary table is tied to the SqlContext that was used to create this DataFrame.
 /// </summary>
 /// <param name="tableName">Name of the table</param>
 public void RegisterTempTable(string tableName)
 {
     dataFrameProxy.RegisterTempTable(tableName);
 }