edbColnames.RODBC_Excel: Retrieve column names of a table in a MS Excel file...

Description Usage Arguments Value Author(s) See Also Examples

View source: R/easyrodbcexcel.R

Description

Retrieve column names of a table in a MS Excel file

(referenced by 'edb'). Wrapper around RODBC::sqlColumns().

Notice that the method does NOT retrieve the full table to

get its column names (so it should work even if the table is big).

Usage

1
2
3
4
5
## S3 method for class 'RODBC_Excel'
edbColnames(edb, tableName, onlyNames = TRUE, 


    testFiles = TRUE, ...)

Arguments

edb

An object of class 'edb', such as returned by edb.

tableName

Single character string. Name of the table to read in 'edb'.

onlyNames

Single logical. If TRUE only returns the column names (vector),

and if FALSE returns a detailed table as in

sqlColumns.

testFiles

Single logical. Should the function test for the presence

(file.exist()) of the needed files in the folder before trying

to fetch information from the database?

...

Additional parameters to be passed to dbListFields(). See

?dbListFields.

Value

The function returns a vector of character strings with the

columns / fields of the original MS Excel table, or a table with

full details on the columns (see onlyNames).

Author(s)

Julien MOEYS <Julien.Moeys@mark.slu.se>

See Also

edb, edbRead.RODBC_Excel,

edbWrite.RODBC_Excel,

edbNames.RODBC_Excel.

Examples

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
library( "easyrodbcexcel" ) 











# System check. Ingnore this or set 'testODBC' to TRUE 


testODBC <- (class(try(odbcDataSources())) != "try-error") & # Check (R)ODBC 


            (Sys.info()[[ "sysname" ]] == "Windows") &       # Only MS Windows


            (.Machine$"sizeof.pointer" == 4)                 # Only 32-bits 











### Windows only:


if( testODBC ){ 


    ### Make a copy of Excel example file:


    #   (a database of soil profile description) 


    file.copy( 


        from = system.file( "soils.xls", package = "easyrodbcexcel" ), 


        to   = "soils.xls" 


    )   


    


    # soils.xls is now in your working directory.


    


    


    


    library( "RODBC" ) # Because soils.db is a SQLite database...


    


    


    


    ### Describe the database (NB: this is not a connection)


    myDb <- edb( dbType = "RODBC_Excel", dbName = "soils.xls" ) 


    


    


    


    ### Use the database:


    


    # List the column names in a table:


    edbColnames( edb = myDb, tableName = "WRB_SOIL_GROUP" ) 


    


    


    


    ### Clean-up


    file.remove( "soils.xls" ) 


    


    


    


    ### Access 2007 ---------------------------------------------


    file.copy( 


        from = system.file( "soils.xlsx", package = "easyrodbcexcel" ), 


        to   = "soils.xlsx" 


    )   


    


    # soils.db is now in your working directory.


    


    


    


    library( "RODBC" ) # Because soils.db is a SQLite database...


    


    


    


    ### Describe the database (NB: this is not a connection)


    myDb2 <- edb( dbType = "RODBC_Excel", dbName = "soils.xlsx", 


        excelVersion = 2007 ) 


    


    


    


    ### Use the database:


    


    # List the column names in a table:


    edbColnames( edb = myDb2, tableName = "WRB_SOIL_GROUP" ) 


    


    


    


    ### Clean-up


    file.remove( "soils.xlsx" ) 


}   #

easyrodbcexcel documentation built on May 2, 2019, 6:12 p.m.