Smita Kapse

Smita Kapse

388 Articles Published

Articles by Smita Kapse

Page 20 of 39

Create an extra small button group with Bootstrap

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 332 Views

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 More

Nested media lists with Bootstrap

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 530 Views

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 More

Justified Nav in Bootstrap

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 238 Views

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 More

Vertically stack pills with Bootstrap

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 265 Views

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 More

Use previous and next class for alignment of links

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 161 Views

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 More

Set success action for a list item in a list group with Bootstrap

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 168 Views

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 More

Vertically stack tabs with Bootstrap

Smita Kapse
Smita Kapse
Updated on 11-Mar-2026 583 Views

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 More

How to set local date/time in a table using LocalDateTime class in Java?

Smita Kapse
Smita Kapse
Updated on 21-May-2025 4K+ Views

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 More

How many ways are there to register a driver in Java?

Smita Kapse
Smita Kapse
Updated on 11-Apr-2025 2K+ Views

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 More

Java DatabaseMetaData getMaxBinaryLiteralLength() method with example.

Smita Kapse
Smita Kapse
Updated on 02-Jan-2025 199 Views

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
Showing 191–200 of 388 articles
« Prev 1 18 19 20 21 22 39 Next »
Advertisements