Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Smita Kapse
Page 20 of 39
Create an extra small button group with Bootstrap
To create a large button group in Bootstrap, use the .btn-group-xs class.You can try to run the following code to implement the .btn-group-xs class −Example Bootstrap Example The following are the car brands: BMW Audi Jeep Datsun Toyota The following are FMCG: ITC Limited Colgate-Palmolive Nestle Britannia Industries Limited
Read MoreNested media lists with Bootstrap
Use the .media-list property to set nested media lists.You can try to run the following code to implement .media-list property −Example Bootstrap Example Tutorials The following are the tutorials: Tutorials We have text tutorials in Python Data Science, Java i18n, GitLab, TestRail, VersionOne, DBUtils, Common CLI, Seaborn, Ansible, LOLCODE, Current Affairs 2018, Apache Commons Collections, etc. Video TutorialsWe have video tutorials for WordPress, Photoshop, Magento, Eclipse, NetBeans, Drupal, Joomla, etc.
Read MoreJustified Nav in Bootstrap
For justified nav in Bootstrap, use the .nav-justfied class. You can try to run the following code for justified nav on a web page:Example Bootstrap Example Subjects Home Tutorials Videos QA Tutors
Read MoreVertically stack pills with Bootstrap
Use the .nav-stacked class in Bootstrap to vertically stack pills:You can try to run the following code to implement the .nav-stacked class −Example Bootstrap Example Database The following are the database technologies: DB2 MySQL SQL CouchDB
Read MoreUse previous and next class for alignment of links
You can try to run the following code to use the previous and next class for alignment of links:Example Bootstrap Example Answers ← Older Newer →
Read MoreSet success action for a list item in a list group with Bootstrap
Use the list-group-item-success class in Bootstrap to set success action for a list item in a list group.You can try to run the following code to implement the list-group-item-success class −Example Bootstrap Example Java Interfaces Multi-threading Packages
Read MoreVertically stack tabs with Bootstrap
Use the .nav-stacked class in Bootstrap to vertically stack tabs,You can try to run the following code to implement the .nav-stacked class minus;Example Bootstrap Example Database The following are the database technologies: DB2 MySQL SQL CouchDB
Read MoreHow to set local date/time in a table using LocalDateTime class in Java?
The java.time package of Java provides a class named LocalDateTime is used to get the current value of local date and time. Using this in addition to date and time values, you can also get other date and time fields, such as day-of-year, day-of-week, and week-of-year. Setting the Local time to a column To set the local date and time value to a column in a table. Obtain the LocalDateTime object: You can obtain the LocalDateTime object by invoking the static method now() as: LocalDateTime localDateTime = LocalDateTime.now(); Get the LocalDate and LocalTime objects from the above obtained LocalDateTime as: ...
Read MoreHow many ways are there to register a driver in Java?
In this article, we will learn different ways to register a driver in Java. JDBC (Java Database Connectivity) is a standard API used to connect Java applications with databases. Before interacting with a database, you must register the JDBC driver so that the DriverManager can recognize and load it.To connect with a database using JDBC, you need to select the driver for the respective database and register the driver. You can register a database driver in two ways: Using Class.forName() method Using the registerDriver() method Register Driver Using Class.forName() Method The ...
Read MoreJava DatabaseMetaData getMaxBinaryLiteralLength() method with example.
In this article, we will learn about the getMaxBinaryLiteralLength() method of the DatabaseMetaData interface in JDBC. getMaxBinaryLiteralLength() method The getMaxBinaryLiteralLength() method of the DatabaseMetaData interface is used to find out the maximum number of characters (hex) that the underlying database allows for a binary literal. This method returns an integer value, representing the maximum length of a binary literal. If this value is 0 it indicates that there is no limit or, the limit is unknown. Steps to get the DatabaseMetaData object The following are the steps to get the DatabaseMetaData object − ...
Read More