what is meta data in html code example
Example 1: metadata html
<meta name="description" content="Free Web tutorials on HTML and CSS">
Example 2: metadata html
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
Example 3: metadata html
<meta http-equiv="refresh" content="30">
Example 4: what is the meta tag in html
Example 5: meta data
It is used for to get column information not the actual data of column
Common methods are getColumnCount and getColumnLabel
//ResultSetMetaData itself does not contains any row data
ResultSetMetaData rsmd = rs.getMetaData();
// Metadata -- data about the data
// ResultSetMetaData -- data about the ResultSet object that
contain our resulting rows and columns
// for example column names, column counts .. and more